mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
a7a6aa0c29
Shadow-DOM Lit element that renders the threads drawer: self-contained styles with build-time token sync from react-core's theme, slot projection for custom rows, license/upsell gating, filtering, and a mobile modal. View-state lives on the element; domain state stays with the host. Multi-format build (ESM/CJS externalize lit as a peer dep; UMD inlines lit so the CDN <script> path is self-contained).
32 lines
886 B
JSON
32 lines
886 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"incremental": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"preserveWatchOutput": true,
|
|
"sourceMap": true,
|
|
"target": "es2022",
|
|
"module": "esnext",
|
|
"lib": ["es2023", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"useDefineForClassFields": false,
|
|
"experimentalDecorators": false,
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|