11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
module.exports = {
|
|
entry: './lib.js',
|
|
output: {
|
|
library: {
|
|
type: "umd",
|
|
name: "matrix"
|
|
},
|
|
filename: "matrix-crdt.js",
|
|
path: require('path').resolve(__dirname, '../../../../../../dist')
|
|
}
|
|
};
|