From 16bdbac1c06b3ec140dc975400246b998bafbeb6 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Thu, 2 Apr 2020 22:36:36 +0300 Subject: [PATCH] Change target to es2018 --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b29aef6..62ce029 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,8 @@ { "compilerOptions": { "outDir": "./dist", - "lib": ["es6", "dom"], "allowJs": true, - "target": "es5", + "target": "ES2018", "module": "commonjs", "strictNullChecks": true, "types": ["node", "url-parse", "jquery", "nanoid", "mocha", "chai"]