xrfragment/src/3rd/js/plugin/matrix/webpack.config.js

11 lines
203 B
JavaScript

module.exports = {
entry: './lib.js',
output: {
library: {
type: "umd",
name: "Matrix"
},
filename: "matrix-crdt.js",
path: require('path').resolve(__dirname, '.')
}
};