mirror of https://github.com/webpack/webpack.git
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
"use strict";
|
|
|
|
const webpack = require("../../../../");
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
devtool: false,
|
|
plugins: [
|
|
new webpack.EvalSourceMapDevToolPlugin({
|
|
ignoreList: [/ignored\.js/]
|
|
})
|
|
],
|
|
optimization: {
|
|
// Ensure the correct `sourceMappingURL` is detected
|
|
concatenateModules: true
|
|
}
|
|
};
|