sandbox-agent/sdks/typescript/tsup.config.ts
2026-01-27 02:52:25 -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,
});