cb82fb7b990b6b68553031ab0419b862bdc3a185f3e9b27dc4fb005c91ca0140ec4e439b28afe24b85208e385c8f3851c8478708ee83f519517b0db2efddf5 961 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. const ChainedMap = require('./ChainedMap');
  2. module.exports = class extends ChainedMap {
  3. constructor(parent) {
  4. super(parent);
  5. this.extend([
  6. 'auxiliaryComment',
  7. 'chunkCallbackName',
  8. 'chunkFilename',
  9. 'chunkLoadTimeout',
  10. 'crossOriginLoading',
  11. 'devtoolFallbackModuleFilenameTemplate',
  12. 'devtoolLineToLine',
  13. 'devtoolModuleFilenameTemplate',
  14. 'devtoolNamespace',
  15. 'filename',
  16. 'futureEmitAssets',
  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. };