mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
21 lines
661 B
JSON
21 lines
661 B
JSON
{
|
|
"extends": "../../packages/v1/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node16",
|
|
"module": "Node16",
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@copilotkit/react-core/*": ["../../packages/v1/react-core/*"],
|
|
"@copilotkit/react-ui/*": ["../../packages/v1/react-ui/*"],
|
|
"@copilotkit/react-textarea/*": ["../../packages/v1/react-textarea/*"],
|
|
"@copilotkit/runtime/*": ["../../packages/v1/runtime/*"],
|
|
"@copilotkitnext/runtime/*": ["../../v2.x/packages/runtime/*"]
|
|
}
|
|
}
|