UNPKG

@copilotkit/react-core

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>

17 lines (15 loc) 452 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", // Exclude TypeScript test files "**/*.test.tsx", // Exclude TypeScript React test files "**/__tests__/*", // Exclude any files inside a __tests__ directory ], ...options, }));