import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['cjs', 'esm'], dts: true, sourcemap: true, clean: true, external: ['@ts-rest/core', 'zod'], tsconfig: 'tsconfig.json', });