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

12 lines
211 B
JavaScript
Raw Normal View History

/** @type {import("../../../../").Configuration} */
2018-05-04 20:00:18 +08:00
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
};