mirror of https://github.com/webpack/webpack.git
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
target: "async-node14",
|
||
|
entry: "./index.js",
|
||
|
optimization: {
|
||
|
chunkIds: "named"
|
||
|
},
|
||
|
output: {
|
||
|
filename: "bundle.js"
|
||
|
}
|
||
|
};
|