webpack/test/configCases/library/umd-array/webpack.config.js

12 lines
211 B
JavaScript

/** @type {import("../../../../").Configuration} */
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
};