webpack/test/configCases/async-library/0-create-library/webpack.config.js

19 lines
289 B
JavaScript
Raw Normal View History

2021-08-16 13:07:24 +08:00
/** @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
}
};