sandbox-agent/sdks/acp-http-client/tsup.config.ts
2026-02-11 14:47:41 +00:00

9 lines
165 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm"],
dts: true,
clean: true,
sourcemap: true,
});