mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
17 lines
294 B
JavaScript
17 lines
294 B
JavaScript
module.exports = {
|
|
'mangle': true,
|
|
'compress': {
|
|
'comparisons': false,
|
|
'keep_fargs': true,
|
|
'pure_getters': true,
|
|
'unsafe': true,
|
|
'unsafe_comps': true,
|
|
'warnings': false
|
|
},
|
|
'output': {
|
|
'ascii_only': true,
|
|
'beautify': false,
|
|
'max_line_len': 500
|
|
}
|
|
};
|