2016-05-16 13:33:49 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The UglifyJS options object for
|
|
|
|
* [compress](https://github.com/mishoo/UglifyJS2#compressor-options),
|
|
|
|
* [mangle](https://github.com/mishoo/UglifyJS2#mangler-options), and
|
|
|
|
* [output](https://github.com/mishoo/UglifyJS2#beautifier-options) options.
|
|
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
'compress': {
|
2017-05-13 13:25:33 +02:00
|
|
|
'collapse_vars': true,
|
|
|
|
'negate_iife': false,
|
2016-05-16 13:33:49 +02:00
|
|
|
'pure_getters': true,
|
|
|
|
'unsafe': true,
|
|
|
|
'warnings': false
|
|
|
|
},
|
|
|
|
'output': {
|
|
|
|
'ascii_only': true,
|
2017-05-13 13:25:33 +02:00
|
|
|
'comments': /@license/,
|
2016-05-16 13:33:49 +02:00
|
|
|
'max_line_len': 500
|
|
|
|
}
|
|
|
|
};
|