9 lines
238 B
TypeScript
9 lines
238 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: { output: 'dist' }
|
|
});
|