Start refactoring

This commit is contained in:
schmelczerandras 2020-07-29 22:33:46 +02:00
parent 6fc53ee51e
commit 9b47d56d8f
39 changed files with 423 additions and 234 deletions

View file

@ -22,21 +22,21 @@ module.exports = {
minimize: true,
minimizer: [
new TerserJSPlugin({
sourceMap: !isProduction,
sourceMap: isDevelopment,
cache: true,
terserOptions: {
ecma: 5,
warnings: false,
warnings: true,
parse: {},
compress: {},
compress: { defaults: true },
mangle: true,
module: false,
output: null,
toplevel: false,
toplevel: true,
nameCache: null,
ie8: false,
keep_classnames: true,
keep_fnames: true,
keep_classnames: false,
keep_fnames: false,
safari10: false,
},
}),