Account-System-Demo/tsconfig.json

12 lines
267 B
JSON
Raw Normal View History

2024-07-16 02:05:26 -04:00
{
2024-07-17 03:34:11 -04:00
"extends": "astro/tsconfigs/base",
2024-07-16 23:39:34 -04:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@layouts/*": ["src/layouts/*"],
"@components/*": ["src/components/*"],
"@styles/*": ["src/styles/*"],
"@library/*": ["src/library/*"]
}
}
}