From 17e815702846646c9073d2e13c267e42fc499aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Mon, 24 Jun 2019 21:26:18 +0200 Subject: [PATCH] config(): change target to es2017 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2963631..69f185f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,11 +5,11 @@ "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es6", + "target": "es2017", "sourceMap": true, "outDir": "./dist", "baseUrl": "./", - "incremental": true, + "incremental": true }, "exclude": ["node_modules", "dist"] }