notes/astro/tsconfig.json

15 lines
348 B
JSON
Raw Normal View History

2025-11-01 00:00:41 +10:30
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
2025-11-01 21:33:17 +10:30
"@styles/*": ["src/styles/*"],
2025-11-01 00:00:41 +10:30
"@utils/*": ["src/utils/*"]
}
}
}