mi-gpt/tsup.config.ts

16 lines
319 B
TypeScript
Raw Permalink Normal View History

2024-01-24 15:14:28 +00:00
import { defineConfig } from "tsup";
export default defineConfig(() => ({
entry: ["src/index.ts"],
outDir: "dist",
target: "node16",
platform: "node",
format: ["esm", "cjs"],
sourcemap: false,
treeshake: true,
minify: false,
2024-01-24 15:14:28 +00:00
clean: true,
shims: true,
dts: true, // Generate declaration file
}));