-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 1.03 KB
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true, // don't place JS everywhere while hacking
"baseUrl": ".", // Bun & editors see the aliases
"paths": {
"@codebuff/common/*": ["./common/src/*"],
"@codebuff/web/*": ["./web/src/*"],
"@codebuff/evals/*": ["./evals/*"],
"@codebuff/sdk": ["./sdk/src/index.ts"],
"@codebuff/sdk/*": ["./sdk/*"],
"@codebuff/agent-runtime/*": ["./packages/agent-runtime/src/*"],
"@codebuff/billing/*": ["./packages/billing/src/*"],
"@codebuff/bigquery/*": ["./packages/bigquery/src/*"],
"@codebuff/internal/*": ["./packages/internal/src/*"],
"@codebuff/code-map/*": ["./packages/code-map/*"]
}
},
"files": [],
"references": [
{ "path": "./common" },
{ "path": "./web" },
{ "path": "./evals" },
{ "path": "./sdk" },
{ "path": "./packages/billing" },
{ "path": "./packages/bigquery" },
{ "path": "./packages/internal" },
{ "path": "./packages/code-map" },
{ "path": "./scripts" }
]
}