Account-System-Demo/tsconfig.json

12 lines
272 B
JSON
Raw Normal View History

2024-07-16 01:05:26 -05:00
{
2024-07-16 22:39:34 -05:00
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@layouts/*": ["src/layouts/*"],
"@components/*": ["src/components/*"],
"@styles/*": ["src/styles/*"],
"@library/*": ["src/library/*"]
}
}
}