Files
adr-sml/tsconfig.json
T
Pouya Lajevardi 19f7226661
Build and deploy / build-and-deploy (push) Failing after 5s
chore: project scaffold, specs, and working record
2026-08-26 08:51:16 -04:00

17 lines
398 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@data/*": ["src/data/*"]
}
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist", "node_modules"]
}