var path = require("path");
module.exports = {
entry: "./example",
output: {
path: path.join(__dirname, "js"),
filename: "MyLibrary.umd.js",
library: "MyLibrary",
libraryTarget: "umd"
}
};