1'use strict';
2
3/**
4 * The UglifyJS options object for
5 * [compress](https://github.com/mishoo/UglifyJS2#compressor-options),
6 * [mangle](https://github.com/mishoo/UglifyJS2#mangler-options), and
7 * [output](https://github.com/mishoo/UglifyJS2#beautifier-options) options.
8 */
9module.exports = {
10  'compress': {
11    'collapse_vars': true,
12    'negate_iife': false,
13    'pure_getters': true,
14    'unsafe': true,
15    'warnings': false
16  },
17  'output': {
18    'ascii_only': true,
19    'comments': /@license/,
20    'max_line_len': 500
21  }
22};
23