From be109e43b31c088b61b4aeeb4850d931aa55b283 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 5 Mar 2020 15:15:29 +0100 Subject: [PATCH] =?UTF-8?q?build:=20=F0=9F=93=A6=EF=B8=8F=20target=20ES6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9e478982..b0cb4a90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,14 +7,13 @@ "importHelpers": true, // Use tslib instead of adding helpers to every emitted js file "module": "CommonJS", // Should be CommonJS for NodeJS apps "strict": true, - "target": "ES2019", // any node version after 2016 is supported + "target": "ES6", // any node version after 2016 is supported "moduleResolution": "node", // should be node "resolveJsonModule": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "outDir": "./build", - "sourceMap": true, - "plugins": [] + "sourceMap": true }, "exclude": ["node_modules", "lib"] }