blog.z0x.ca/tsconfig.json
2025-01-08 22:06:02 -05:00

12 lines
235 B
JSON

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