import { defineConfig } from 'tsup' export default defineConfig({ entry: { index: 'src/index.ts', 'config/index': 'src/config/index.ts', 'cli/program': 'src/cli/program.ts', }, format: ['esm'], dts: true, sourcemap: true, clean: true, splitting: false, target: 'node22', })