Files
llmx/sdk/typescript/tsup.config.ts

13 lines
218 B
TypeScript
Raw Normal View History

2025-09-29 13:27:13 -07:00
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,
});