aboutsummaryrefslogtreecommitdiff
path: root/packages/tools/tsdown.config.ts
blob: 1a84fb67a435b4e66d01c4f7c98e45bf772e0ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { defineConfig } from "tsdown"

export default defineConfig({
	entry: [
		"src/index.ts",
		"src/ai-sdk.ts",
		"src/claude-memory.ts",
		"src/openai/index.ts",
	],
	format: "esm",
	sourcemap: false,
	target: "es2020",
	tsconfig: "./tsconfig.json",
	clean: true,
	minify: true,
	dts: {
		sourcemap: false,
	},
	exports: true,
	unbundle: true,
})