mirror of https://github.com/webpack/webpack.git
19 lines
289 B
JavaScript
19 lines
289 B
JavaScript
|
/** @type {import("../../../../types").Configuration} */
|
||
|
module.exports = {
|
||
|
entry: "./a.js",
|
||
|
output: {
|
||
|
filename: "lib.js",
|
||
|
library: {
|
||
|
type: "module"
|
||
|
}
|
||
|
},
|
||
|
target: "node14",
|
||
|
optimization: {
|
||
|
minimize: true
|
||
|
},
|
||
|
experiments: {
|
||
|
topLevelAwait: true,
|
||
|
outputModule: true
|
||
|
}
|
||
|
};
|