blog/tsconfig.json

17 lines
299 B
JSON

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