mirror of https://github.com/webpack/webpack.git
27 lines
448 B
JavaScript
27 lines
448 B
JavaScript
"use strict";
|
|
|
|
const webpack = require("../../../../");
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
node: {
|
|
__dirname: false,
|
|
__filename: false
|
|
},
|
|
entry: {
|
|
bundle0: ["./index.js"],
|
|
bundle1: ["./test1.js", "./test2.js"]
|
|
},
|
|
output: {
|
|
filename: "[name].js"
|
|
},
|
|
plugins: [
|
|
new webpack.EvalSourceMapDevToolPlugin({
|
|
include: /\.js$/,
|
|
exclude: /test2\.js/,
|
|
module: true,
|
|
columns: false
|
|
})
|
|
]
|
|
};
|