scratch/tsconfig.json
2026-05-12 03:02:53 -04:00

14 lines
352 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"paths": {
"@assets/*": ["./src/assets/*"],
"@components/*": ["./src/components/*"],
"@lib/*": ["./src/lib/*"],
"@styles/*": ["./src/styles/*"],
"@utils/*": ["./src/utils/*"]
}
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}