From 961083d49c84bd11a7de53b1a585597fafca7be0 Mon Sep 17 00:00:00 2001 From: nuintun Date: Tue, 10 Dec 2019 15:09:17 +0800 Subject: [PATCH] :wrench: Changing tsconfig configuration --- tsconfig.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d3736095..5b3b8cd8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,17 +2,16 @@ "compileOnSave": false, "compilerOptions": { "pretty": true, - "target": "es5", + "target": "ES5", "newLine": "LF", - "module": "esnext", + "module": "ESNext", "declaration": false, "alwaysStrict": true, "importHelpers": true, "noImplicitAny": true, "noUnusedLocals": true, - "moduleResolution": "node", - "forceConsistentCasingInFileNames": true, - "lib": ["es5", "esnext", "dom", "scripthost"] + "moduleResolution": "Node", + "forceConsistentCasingInFileNames": true }, "include": ["src/**/*"], "exclude": ["node_modules"]