mirror of https://github.com/webpack/webpack.git
15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const webpack = require("../../../../");
|
||
|
|
||
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
mode: "development",
|
||
|
devtool: false,
|
||
|
plugins: [
|
||
|
new webpack.SourceMapDevToolPlugin({
|
||
|
ignoreList: [/ignored\.js/]
|
||
|
})
|
||
|
]
|
||
|
};
|