From 902a07087c2808c77943b9617a2ab063b1c260e9 Mon Sep 17 00:00:00 2001 From: Frans Bongers Date: Sun, 24 Nov 2024 22:36:37 +0100 Subject: initial setup --- tsconfig.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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 + } +} -- cgit v1.2.3