myc-number
Version:
25 lines (22 loc) • 435 B
JavaScript
const path = require('path')
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'myc-number.js',
globalObject: 'this',
library: {
name: 'mycNumber',
type: 'umd',
},
clean: true,
},
externals: {
lodash: {
commonjs: 'lodash',
commonjs2: 'lodash',
amd: 'lodash',
root: '_',
},
},
}