qiankun-fit/.fatherrc.js
gongshun bc71e1eaed 🔨 support for umd build (#1185)
Co-authored-by: gongshun <gongshun@gridsum.com>
2021-01-05 20:53:52 +08:00

21 lines
339 B
JavaScript

export default {
target: 'browser',
esm: 'babel',
cjs: 'babel',
umd: {
minFile: true,
sourcemap: true,
},
runtimeHelpers: true,
extraBabelPlugins: [
[
'babel-plugin-import',
{
libraryName: 'lodash',
libraryDirectory: '',
camel2DashComponentName: false,
},
],
],
};