sandbox-agent/sdks/acp-http-client/tsup.config.ts
Nathan Flurry 2ba630c180 acp spec
2026-02-11 06:43:36 -08: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,
});