From 337755496972f774720ebc35f48fa6cd4b1b766a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 25 Mar 2022 19:48:58 +0100 Subject: [PATCH] fix(core): update --- ts/mod_esbuild/index.child.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/mod_esbuild/index.child.ts b/ts/mod_esbuild/index.child.ts index 110793c..dd81148 100644 --- a/ts/mod_esbuild/index.child.ts +++ b/ts/mod_esbuild/index.child.ts @@ -22,6 +22,7 @@ export class TsBundleProcess { bundle: true, sourcemap: true, format: 'esm', + target: 'es2020', outfile: toArg }); } @@ -43,6 +44,7 @@ export class TsBundleProcess { bundle: true, sourcemap: true, format: 'esm', + target: 'es2020', minify: true, outfile: toArg });