提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
961 B

  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. };