From 2b794967d2cab0553671e432dfac56b05a6b8292 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 6 Oct 2019 01:21:32 +0200 Subject: [PATCH] fix(core): update --- ts/tsbundle.class.tsbundle.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ts/tsbundle.class.tsbundle.ts b/ts/tsbundle.class.tsbundle.ts index 3f68229..0cf7089 100644 --- a/ts/tsbundle.class.tsbundle.ts +++ b/ts/tsbundle.class.tsbundle.ts @@ -88,10 +88,8 @@ export class TsBundle { const productionOptions = this.getBaseOptions(fromArg, toArg); productionOptions.plugins.push(plugins.rollupTerser({ compress: true, - mangle: false, - toplevel: false, - keep_classnames: true, - sourcemap: true + mangle: true, + sourcemap: false })); return productionOptions; }