加载中...

SourceMapDevToolPlugin


» Review this content

为资源添加SourceMaps。

new webpack.SourceMapDevToolPlugin(options) 
  • options.test / options.include / options.exclude (string|RegExp|Array): 用于确定应处理哪些资源。每个都可以是 RegExp(资源文件名匹配),一个string(资源文件名需要以这个字符串开头)或者一个Array(他们需要匹配)。如果省略文件扩展名,test将默认为.js文件。
  • options.filename (string): 定义SourceMap的输出文件名。如果没有提供值,SourceMap将被内联。
  • options.append (string): 附加到原始素材资源。通常是#sourceMappingURL注释。[url]替换为SourceMap文件的URL。false禁用附加。
  • options.moduleFilenameTemplate / options.fallbackModuleFilenameTemplate (string): 请参见 output.devtoolModuleFilenameTemplate.
  • options.module (boolean): (默认为 true) 当为false时,加载器(loader)不生成SourceMaps,并且转换的代码被用作源代码。
  • options.columns (boolean): (默认为 true) 当为false时,SourceMaps中的映射队列,使用更快的SourceMap实现。
  • options.lineToLine ({test: string|RegExp|Array, include: string|RegExp|Array, exclude: string|RegExp|Array} 匹配模块使用简单(更快)的线对线源映射。

示例

» TODO

原文:https://webpack.js.org/plugins/source-map-dev-tool-plugin/


还没有评论.