21 lines
339 B
JavaScript
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,
|
|
},
|
|
],
|
|
],
|
|
};
|