nicecode-v2/packages/hooks/.fatherrc.ts
2023-12-27 13:40:07 +08:00

11 lines
247 B
TypeScript

import { defineConfig } from 'father';
export default defineConfig({
// more father config: https://github.com/umijs/father/blob/master/docs/config.md
esm: { output: 'es' },
cjs: { output: 'lib' },
umd: {
name: 'zhst-hooks',
},
});