webpack/examples/harmony-library/webpack.config.js

11 lines
200 B
JavaScript
Raw Normal View History

2016-12-14 19:03:24 +08:00
var path = require("path");
module.exports = {
entry: "./example",
output: {
path: path.join(__dirname, "js"),
filename: "MyLibrary.umd.js",
library: "MyLibrary",
libraryTarget: "umd"
}
};