Configure more aggressive type checks

This commit is contained in:
Joscha 2025-03-02 18:22:02 +01:00
parent 8729cf09b1
commit 5c80ec185d
3 changed files with 18 additions and 18 deletions

View file

@ -0,0 +1,14 @@
// https://www.typescriptlang.org/tsconfig/
{
"compilerOptions": {
// Type Checking
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true
}
}