mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
c9793b5e6e
Align langgraph-js with examples/integrations/langgraph-python via the parity tooling. Remove legacy app/ layout, adopt src/ layout, rewrite the TS agent to expose the tracked tool surface (manage_todos, get_todos, query_data, generate_a2ui, search_flights) and todos state, and write the canonical PROMPT.md. Keeps LangGraphAgent + stategraph runtime (allowed divergence per the manifest); brings deps, Dockerfile.app, entrypoint, showcase metadata, and shared UI into lockstep. Parity verifier: 88 ok / 0 error.
34 lines
654 B
JSON
34 lines
654 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|