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

14 lines
226 B
JavaScript

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