mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
module.exports = {
|
|
'compress': {
|
|
'pure_getters': true,
|
|
'unsafe': true,
|
|
'unsafe_comps': true,
|
|
'warnings': false
|
|
},
|
|
'mangle': {
|
|
'except': ['define']
|
|
},
|
|
'output': {
|
|
'ascii_only': true,
|
|
'comments': /^!|@cc_on|@license|@preserve/i,
|
|
'max_line_len': 500
|
|
}
|
|
};
|