mirror of https://github.com/webpack/webpack.git
23 lines
378 B
JavaScript
23 lines
378 B
JavaScript
|
var webpack = require("../../../../");
|
||
|
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
|
||
|
})
|
||
|
]
|
||
|
};
|