UNPKG

935 BJavaScriptView Raw
1const ChainedMap = require('./ChainedMap');
2
3module.exports = class extends ChainedMap {
4 constructor(parent) {
5 super(parent);
6 this.extend([
7 'auxiliaryComment',
8 'chunkCallbackName',
9 'chunkFilename',
10 'chunkLoadTimeout',
11 'crossOriginLoading',
12 'devtoolFallbackModuleFilenameTemplate',
13 'devtoolLineToLine',
14 'devtoolModuleFilenameTemplate',
15 'devtoolNamespace',
16 'filename',
17 'globalObject',
18 'hashDigest',
19 'hashDigestLength',
20 'hashFunction',
21 'hashSalt',
22 'hotUpdateChunkFilename',
23 'hotUpdateFunction',
24 'hotUpdateMainFilename',
25 'jsonpFunction',
26 'library',
27 'libraryExport',
28 'libraryTarget',
29 'path',
30 'pathinfo',
31 'publicPath',
32 'sourceMapFilename',
33 'sourcePrefix',
34 'strictModuleExceptionHandling',
35 'umdNamedDefine',
36 'webassemblyModuleFilename',
37 ]);
38 }
39};