mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
e197b1a46e
- dependencies: workspace:* -> published ranges (@copilotkit/bot* ~0.0.1,
@copilotkit/runtime ^1.59.5) — the example is a consumer of the released
packages, installable and deployable with zero monorepo context
- drop the private @copilotkit/typescript-config devDep; inline the base
compiler options into tsconfig.json (verified identical tsc result)
- commit a standalone examples/slack/pnpm-lock.yaml for isolated installs
(root workspace installs ignore it)
- slack-app-manifest.{yaml,json}: remove assistant:write scope +
assistant_thread_started event (Slack rejects them without an
assistant_view feature block; the bot doesn't implement that surface),
add the /triage slash command the bot registers
Verified: slack-example tests 38/38 against the published packages; direct
tsc --noEmit clean; standalone install + runtime/bot boot exercised in a
gitless clean-room snapshot.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
570 B
JSON
22 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "NodeNext",
|
|
"noUncheckedIndexedAccess": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2022",
|
|
"noEmit": true,
|
|
"lib": ["es2022", "dom"],
|
|
"types": ["node"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@copilotkit/bot-ui"
|
|
},
|
|
"include": ["app/**/*.ts", "app/**/*.tsx", "runtime.ts"],
|
|
"exclude": ["node_modules", "agent", "e2e"]
|
|
}
|