webpack/test/configCases/source-map/eval-source-map-ignore-list/webpack.config.js

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