uglify.options.js 507 B

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