import { readdirSync } from 'fs';
import { join } from 'path';
export default {
cjs: { type: 'babel', lazy: true },
esm: {
type: 'babel',
importLibToEs: true,
},
extraBabelPlugins: [
['babel-plugin-import', { libraryName: 'antd', libraryDirectory: 'es', style: true }, 'antd'],
],
};
-
秦文海 authored71883822