sdk/typescript/tsup.config.ts (11 lines of code) (raw):
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm"],
dts: true,
sourcemap: true,
clean: true,
minify: false,
target: "node18",
shims: false,
});