summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/lodash/lib/common/uglify.options.js
blob: af0ff436ab2090da146ca4084229d5c65acf9ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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': {
    'pure_getters': true,
    'unsafe': true,
    'warnings': false
  },
  'mangle': {
    'except': ['define']
  },
  'output': {
    'ascii_only': true,
    'comments': /^!|@cc_on|@license|@preserve/i,
    'max_line_len': 500
  }
};