UNPKG

@copilotkit/runtime-client-gql

Version:

<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />

13 lines (11 loc) 313 B
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, }));