mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
29 lines
752 B
JSON
29 lines
752 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@copilotkitnext/typescript-config/react-library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@copilotkitnext/core": [
|
|
"../core/dist/index.d.ts",
|
|
"../core/src/index.ts"
|
|
],
|
|
"@copilotkitnext/shared": [
|
|
"../shared/dist/index.d.ts",
|
|
"../shared/src/index.ts"
|
|
],
|
|
"@copilotkitnext/web-inspector": [
|
|
"../web-inspector/dist/index.d.ts",
|
|
"../web-inspector/src/index.ts"
|
|
]
|
|
},
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|