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

11 lines
159 B
JavaScript

module.exports = {
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
};