update tsconfig.json to be more strict

This commit is contained in:
2025-02-22 00:23:55 -05:00
parent 4663aca074
commit b5f279691c

View File

@ -1,8 +1,10 @@
{ {
"extends": "astro/tsconfigs/strict", "extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"], "include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"], "exclude": ["dist"],
"compilerOptions": { "compilerOptions": {
"noImplicitAny": true "noImplicitAny": true,
} "noUnusedLocals": true,
"allowUnusedLabels": false
}
} }