troylusty.com/tsconfig.json

14 lines
254 B
JSON
Raw Normal View History

2024-12-23 21:18:55 +00:00
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@*": ["./src/*"]
},
"outDir": "dist"
}
}