scratch/tsconfig.json
2026-05-11 22:00:11 -04:00

14 lines
357 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"]
}