fliphub-monorepo
Version:
the builder of builders
10 lines (8 loc) • 400 B
JavaScript
const ChainedMap = require('./ChainedMap');
module.exports = class extends ChainedMap {
constructor(parent) {
super(parent);
this.extend(['clientLogLevel', 'compress', 'contentBase', 'filename', 'headers', 'historyApiFallback', 'host', 'hot', 'hotOnly', 'https', 'inline', 'lazy', 'noInfo', 'overlay', 'port', 'proxy', 'quiet', 'setup', 'stats', 'watchContentBase']);
}
};
;