sandbox-agent/sdks/react/tsup.config.ts
2026-03-07 16:50:24 -08:00

10 lines
185 B
TypeScript

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