import { defineConfig } from "tsup"; export default defineConfig({ entry: { index: "src/index.ts", stdio: "src/stdio.ts", http: "src/http.ts", }, format: ["esm"], platform: "node", target: "node20", dts: true, sourcemap: true, clean: true, splitting: false, outDir: "dist", });