UNPKG

html-pages

Version:

Simple development HTTP Server for file serving and directory listing made by a Designer. Use it for hacking your HTML/JavaScript/CSS files but not for deploying your final site.

23 lines (21 loc) 534 B
'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': { 'collapse_vars': true, 'negate_iife': false, 'pure_getters': true, 'unsafe': true, 'warnings': false }, 'output': { 'ascii_only': true, 'comments': /@license/, 'max_line_len': 500 } };