From e5bf2ac20c7a43552d497916f3e267dfede5afe2 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 1 Jun 2020 18:19:37 +0000 Subject: [PATCH] fix(core): update --- ts/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/index.ts b/ts/index.ts index f3cf93e..94b1921 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -17,7 +17,7 @@ if (process.argv.includes('--web')) { defaultTsNodeOptions.compilerOptions = { ...previousCompilerOptions, lib: ['es2016', 'es2017', 'dom'], - target: 'es2015' // Script Target should be a string -> 2 is for ES2015 + target: 'es2017' // Script Target should be a string -> 2 is for ES2015 }; }