-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 1.12 KB
/
tsconfig.base.json
File metadata and controls
34 lines (34 loc) · 1.12 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
32
33
34
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"incremental": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@ray/cache": ["packages/cache/src/index.ts"],
"@ray/config": ["packages/config/src/index.ts"],
"@razroo/ray-core": ["packages/core/src/index.ts"],
"@ray/deploy": ["packages/deploy/src/index.ts"],
"@ray/models": ["packages/models/src/index.ts"],
"@ray/prompts": ["packages/prompts/src/index.ts"],
"@ray/runtime": ["packages/runtime/src/index.ts"],
"@ray/scheduler": ["packages/scheduler/src/index.ts"],
"@razroo/ray-sdk": ["packages/sdk/src/index.ts"],
"@ray/telemetry": ["packages/telemetry/src/index.ts"]
}
}
}