fliphub-monorepo
Version:
the builder of builders
33 lines (31 loc) • 749 B
JavaScript
const ChainedMap = require('./ChainedMap');
module.exports = class extends ChainedMap {
constructor(parent) {
super(parent);
this.extend([
'chunkFilename',
'crossOriginLoading',
'filename',
'library',
'libraryTarget',
'devtoolFallbackModuleFilenameTemplate',
'devtoolLineToLine',
'devtoolModuleFilenameTemplate',
'hashFunction',
'hashDigest',
'hashDigestLength',
'hashSalt',
'hotUpdateChunkFilename',
'hotUpdateFunction',
'hotUpdateMainFilename',
'jsonpFunction',
'path',
'pathinfo',
'publicPath',
'sourceMapFilename',
'sourcePrefix',
'strictModuleExceptionHandling',
'umdNamedDefine'
]);
}
};