mirror of https://github.com/webpack/webpack.git
53 lines
662 B
JavaScript
53 lines
662 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration[]} */
|
|
module.exports = [
|
|
{
|
|
target: "node",
|
|
entry: "./extract1",
|
|
devtool: "source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
extractSourceMap: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
target: "node",
|
|
entry: "./extract2",
|
|
devtool: "source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
extractSourceMap: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
target: "node",
|
|
entry: "./extract3",
|
|
devtool: "source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
extractSourceMap: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
entry: "./remove-comment",
|
|
devtool: "source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
extractSourceMap: true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
];
|