From b1cc9291352fa41208cabab23712c8c9c2b40e7c Mon Sep 17 00:00:00 2001 From: khai96_ Date: Fri, 8 May 2020 10:05:34 +0700 Subject: [PATCH] Create tsconfig.json --- tsconfig.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..36e8eb6 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,29 @@ + +{ + "compilerOptions": { + "target": "ES2018", + "module": "CommonJS", + "moduleResolution": "Node", + "resolveJsonModule": true, + "lib": [ + "ES2018", + "ES2019", + "ES2020", + "ESNext" + ], + "preserveConstEnums": true, + "incremental": false, + "declaration": true, + "sourceMap": true, + "importHelpers": false, + "strict": true, + "pretty": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true + } +}