26 lines
669 B
JavaScript
26 lines
669 B
JavaScript
|
module.exports = (env, options) => {
|
||
|
return {
|
||
|
entry: {
|
||
|
'echarts-liquidfill': __dirname + '/index.js'
|
||
|
},
|
||
|
output: {
|
||
|
libraryTarget: 'umd',
|
||
|
library: ['echarts-liquidfill'],
|
||
|
path: __dirname + '/dist',
|
||
|
filename: options.mode === 'production' ? '[name].min.js' : '[name].js'
|
||
|
},
|
||
|
optimization: {
|
||
|
concatenateModules: true
|
||
|
},
|
||
|
externals: {
|
||
|
'echarts/lib/echarts': 'echarts'
|
||
|
},
|
||
|
devtool: 'source-map',
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'echarts/lib/echarts': 'echarts'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|