inula/packages/max/.fatherrc.ts

13 lines
208 B
TypeScript

import { defineConfig } from 'father';
export default defineConfig({
cjs: {
output: 'dist',
ignores: ['src/client/**'],
},
esm: {
input: 'src/client',
output: 'client/client',
},
});