aboutsummaryrefslogtreecommitdiff
path: root/packages/ai-sdk/tsdown.config.ts
blob: f587b211d4c7303bd67039878b1d0ec83622292d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineConfig } from "tsdown"

export default defineConfig({
	entry: ["src/index.ts"],
	format: "esm",
	sourcemap: true,
	target: "es2020",
	tsconfig: "./tsconfig.json",
	clean: true,
	minify: true,
	dts: {
		sourcemap: true,
	},
	exports: true,
})