2021-12-13 03:59:43 +08:00
|
|
|
import { IBundleOptions } from 'father-build/src/types';
|
|
|
|
|
|
|
|
const options: IBundleOptions = {
|
2021-12-09 17:15:46 +08:00
|
|
|
esm: 'rollup',
|
|
|
|
disableTypeCheck: false,
|
|
|
|
cjs: { type: 'babel', lazy: true },
|
|
|
|
autoPkgs: false,
|
|
|
|
pkgs: [
|
|
|
|
'drip-table',
|
|
|
|
],
|
|
|
|
};
|
2021-12-13 03:59:43 +08:00
|
|
|
|
|
|
|
export default options;
|