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" + } +}