Blame view

internal/eslint-config/build.config.ts 197 Bytes
vben authored
1
2
3
4
import { defineBuildConfig } from 'unbuild';

export default defineBuildConfig({
  clean: true,
vben authored
5
  entries: ['src/index', 'src/strict'],
vben authored
6
7
8
9
10
  declaration: true,
  rollup: {
    emitCJS: true,
  },
});