39 lines
935 B
JavaScript
39 lines
935 B
JavaScript
const ChainedMap = require('./ChainedMap');
|
|
|
|
module.exports = class extends ChainedMap {
|
|
constructor(parent) {
|
|
super(parent);
|
|
this.extend([
|
|
'auxiliaryComment',
|
|
'chunkCallbackName',
|
|
'chunkFilename',
|
|
'chunkLoadTimeout',
|
|
'crossOriginLoading',
|
|
'devtoolFallbackModuleFilenameTemplate',
|
|
'devtoolLineToLine',
|
|
'devtoolModuleFilenameTemplate',
|
|
'devtoolNamespace',
|
|
'filename',
|
|
'globalObject',
|
|
'hashDigest',
|
|
'hashDigestLength',
|
|
'hashFunction',
|
|
'hashSalt',
|
|
'hotUpdateChunkFilename',
|
|
'hotUpdateFunction',
|
|
'hotUpdateMainFilename',
|
|
'jsonpFunction',
|
|
'library',
|
|
'libraryExport',
|
|
'libraryTarget',
|
|
'path',
|
|
'pathinfo',
|
|
'publicPath',
|
|
'sourceMapFilename',
|
|
'sourcePrefix',
|
|
'strictModuleExceptionHandling',
|
|
'umdNamedDefine',
|
|
'webassemblyModuleFilename',
|
|
]);
|
|
}
|
|
};
|