| 12345678910111213141516171819 |
- import { defineBuildConfig } from 'unbuild';
- export default defineBuildConfig({
- entries: [
- 'src/index',
- 'src/components/index',
- 'src/hooks/index',
- 'src/api/index',
- ],
- declaration: true,
- clean: true,
- rollup: {
- emitCJS: true,
- esbuild: {
- target: 'es2022',
- jsx: 'automatic',
- },
- },
- });
|