diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index e390cc4..89a2587 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,23 @@ { "compilerOptions": { - "target": "es2021", + "target": "esnext", "declaration": true, + + "strict": false, + //"strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + //"strictPropertyInitialization": true, + "noImplicitThis": true, + "useUnknownInCatchVariables": true, + "alwaysStrict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + //"exactOptionalPropertyTypes": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": false } } |