mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-06 20:58:04 +00:00
16 lines
319 B
TypeScript
16 lines
319 B
TypeScript
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,
|
|
clean: true,
|
|
shims: true,
|
|
dts: true, // Generate declaration file
|
|
}));
|