Skip to content

Commit 5f945d8

Browse files
committed
Fix the path
1 parent 314300c commit 5f945d8

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

agents/agent-ai-sdk/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@
2424
"skipLibCheck": true,
2525
"typeRoots": [
2626
"./node_modules/@types"
27-
]
27+
],
28+
"composite": true,
29+
"paths": {
30+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
31+
}
2832
},
2933
"exclude": [
3034
"node_modules",

basic/cdk/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
],
3939
"composite": true,
4040
"paths": {
41-
"@llm-ts-example/common-backend": ["../../common/backend"],
41+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
42+
"@llm-ts-example/common-backend-langchain": ["../../common/backend/langchain"],
4243
}
4344
},
4445
"exclude": [

rag/cdk/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
],
4242
"composite": true,
4343
"paths": {
44-
"@llm-ts-example/common-backend": ["../../common/backend"],
44+
"@llm-ts-example/common-backend-core": ["../../common/backend/core"],
45+
"@llm-ts-example/common-backend-langchain": ["../../common/backend/langchain"],
4546
}
4647
},
4748
"exclude": [

0 commit comments

Comments
 (0)