From 2f4a94e4c6a175b6c5c637e7f2818d4e50459741 Mon Sep 17 00:00:00 2001 From: Vitor Luiz Cavalcanti Date: Mon, 17 Aug 2020 12:05:26 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20bundle=20isn't=20transpile?= =?UTF-8?q?d=20to=20ES5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.build.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.build.json b/tsconfig.build.json index 2cc5434..1f35cf3 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -2,6 +2,8 @@ "extends": "./tsconfig.json", "compilerOptions": { // Build settings + "target": "ES5", + "module": "ES2020", "newLine": "LF", "charset": "utf-8", "sourceMap": true,