2018-12-16 02:36:36 +01:00
|
|
|
const TerserWebpackPlugin = require('terser-webpack-plugin')
|
|
|
|
|
|
|
|
module.exports = () => new TerserWebpackPlugin({
|
2019-08-26 03:33:44 +02:00
|
|
|
exclude: /tesseract-asset/,
|
2018-12-16 02:36:36 +01:00
|
|
|
cache: true,
|
|
|
|
parallel: true,
|
|
|
|
sourceMap: true,
|
|
|
|
terserOptions: {
|
2019-08-26 03:33:44 +02:00
|
|
|
ecma: 8,
|
2018-12-16 02:36:36 +01:00
|
|
|
mangle: true,
|
|
|
|
compress: {
|
|
|
|
pure_funcs: ['console.log']
|
|
|
|
},
|
|
|
|
output: {
|
|
|
|
comments: false
|
|
|
|
},
|
|
|
|
safari10: true
|
|
|
|
}
|
|
|
|
})
|