mirror of https://github.com/webpack/webpack.git
21 lines
369 B
JavaScript
21 lines
369 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
output: {
|
|
filename: "[name].js"
|
|
},
|
|
target: ["es2022", "async-node"],
|
|
entry: {
|
|
one: "./one",
|
|
"dir2/two": "./two",
|
|
"/three": "./three",
|
|
"/dir4/four": "./four",
|
|
"/dir5/dir6/five": "./five",
|
|
"/dir5/dir6/six": "./six"
|
|
},
|
|
optimization: {
|
|
runtimeChunk: "single"
|
|
}
|
|
};
|