troylusty.com/tsconfig.json
2024-12-23 21:18:55 +00:00

13 lines
254 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@*": ["./src/*"]
},
"outDir": "dist"
}
}