mirror of https://github.com/webpack/webpack.git
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
|
var path = require("path");
|
||
|
module.exports = {
|
||
|
entry: "./example",
|
||
|
output: {
|
||
|
path: path.join(__dirname, "js"),
|
||
|
filename: "MyLibrary.umd.js",
|
||
|
library: "MyLibrary",
|
||
|
libraryTarget: "umd"
|
||
|
}
|
||
|
};
|