import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/query-config.ts'], splitting: false, sourcemap: false, clean: true, format: 'esm', dts: true, outDir: 'dist', tsconfig: 'tsconfig.json', });