From 59204fbf5197cc8faf7fdba57c212dd6b36eccba Mon Sep 17 00:00:00 2001 From: Dragory Date: Sun, 17 Feb 2019 22:48:41 +0200 Subject: [PATCH] TS: use esnext as target/lib --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 372f9fcd..f429c937 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,9 +6,10 @@ "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, - "target": "es2017", + "target": "esnext", "lib": [ - "es2017" + "es2017", + "esnext" ], "baseUrl": "./", "resolveJsonModule": true,