Skip to content

Commit d7dc345

Browse files
fix(evals): Add tsconfig path and reference for integrations package
Ensures that the evals project can correctly resolve and build the @codebuff/integrations package. Generated with Codebuff 🤖 Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent 673778a commit d7dc345

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

evals/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
"paths": {
66
"common/*": ["../common/src/*"],
77
"backend/*": ["../backend/src/*"],
8-
"npm-app/*": ["../npm-app/src/*"]
8+
"npm-app/*": ["../npm-app/src/*"],
9+
"@codebuff/integrations/*": ["../packages/integrations/src/*"]
910
},
1011
"typeRoots": ["./node_modules/@types", "../node_modules/@types"]
1112
},
1213
"references": [
1314
{ "path": "../common" },
1415
{ "path": "../backend" },
15-
{ "path": "../npm-app" }
16+
{ "path": "../npm-app" },
17+
{ "path": "../packages/integrations" }
1618
],
1719
"exclude": ["test-repos"]
1820
}

0 commit comments

Comments
 (0)