mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
94c9c1d4c3
Headless React Native wrapper for CopilotKit. Provides a lightweight CopilotKitProvider and re-exports platform-agnostic hooks from react-core without pulling web dependencies (no DOM, CSS, Radix, Lit, A2UI). Includes XHR-based streaming fetch polyfill for Hermes and granular polyfills for streams, encoding, crypto, DOM, and location APIs.
17 lines
342 B
JSON
17 lines
342 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|