From 0a17aa48e84b7c254f6df415405289ba8477d362 Mon Sep 17 00:00:00 2001 From: Yokozuna59 Date: Fri, 5 May 2023 22:33:38 +0300 Subject: [PATCH] build: create root tsconfig.base.json Signed-off-by: Yokozuna59 --- tsconfig.base.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tsconfig.base.json diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 0000000..9d27216 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "allowArbitraryExtensions": false, + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "declaration": true, + "exactOptionalPropertyTypes": true, + "module": "ES6", + "moduleResolution": "node", + "newLine": "lf", + "noImplicitOverride": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noStrictGenericChecks": false, + "removeComments": true, + "strict": true, + "stripInternal": true, + "target": "ES6" + } +}