sandbox-agent/sdks/persist-rivet/tsup.config.ts
2026-02-11 07:57:02 -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",
});