sandbox-agent/sdks/cli-shared/tsup.config.ts
2026-02-02 18:25:51 -08:00

9 lines
172 B
TypeScript

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