@copilotkit/runtime-client-gql
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
13 lines (11 loc) • 313 B
text/typescript
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/**/*.{ts,tsx}"],
format: ["esm", "cjs"],
dts: true,
minify: false,
external: ["react"],
sourcemap: true,
exclude: ["**/*.test.ts", "**/*.test.tsx", "**/__tests__/*"],
...options,
}));