webpack/test/configCases/source-map/array-as-output-library-in-.../webpack.config.js

15 lines
236 B
JavaScript
Raw Normal View History

"use strict";
/** @type {import("../../../../").Configuration} */
2018-07-09 23:32:57 +08:00
module.exports = {
devtool: "source-map",
output: {
library: {
root: ["Foo", "[name]"],
amd: "[name]",
commonjs: "[name]"
},
libraryTarget: "umd"
}
};