diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2024-11-24 22:36:37 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2024-11-24 22:36:37 +0100 |
commit | 902a07087c2808c77943b9617a2ab063b1c260e9 (patch) | |
tree | 0d11c373a0da7ab35d23df0d881f8eeeb1d14322 /tsconfig.json | |
parent | 1b0d1a568e4224f6f3ff927e06997b9152e86ddf (diff) | |
download | land-and-freedom-902a07087c2808c77943b9617a2ab063b1c260e9.tar.gz |
initial setup
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..825d119 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es2016", + "declaration": false, + "sourceMap": false, + "module": "commonjs", + "moduleResolution": "node", + + "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 + } +} |