From e30369ac504c83629597ec90ae65beb77a8e92f2 Mon Sep 17 00:00:00 2001 From: Resi Respati Date: Wed, 1 Aug 2018 12:48:03 +0700 Subject: [PATCH] upgraded output target to ES2017 --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0192b47..a8dd055 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { - "module": "es2015", - "target": "es5", + "module": "esnext", + "lib": ["esnext"], + "target": "es2017", "moduleResolution": "Node", "outDir": "dist", "baseUrl": "src/",