mirror of https://github.com/webpack/webpack.git
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
|
|
module.exports = {
|
||
|
|
output: {
|
||
|
|
libraryTarget: "umd",
|
||
|
|
library: {
|
||
|
|
root: ["test", "library"],
|
||
|
|
amd: "test-library",
|
||
|
|
commonjs: "test-library"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|