drip-table/.fatherrc.ts

14 lines
254 B
TypeScript
Raw Normal View History

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;