-
Notifications
You must be signed in to change notification settings - Fork 360
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 1.05 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@runanywhere/web": ["../../../sdk/runanywhere-web/packages/core/src/index.ts"],
"@runanywhere/web/internal": ["../../../sdk/runanywhere-web/packages/core/src/internal.ts"],
"@runanywhere/web/browser": ["../../../sdk/runanywhere-web/packages/core/src/browser.ts"],
"@runanywhere/web-llamacpp": ["../../../sdk/runanywhere-web/packages/llamacpp/src/index.ts"],
"@runanywhere/web-onnx": ["../../../sdk/runanywhere-web/packages/onnx/src/index.ts"],
"@runanywhere/proto-ts": ["../../../sdk/shared/proto-ts/src/index.ts"],
"@runanywhere/proto-ts/*": ["../../../sdk/shared/proto-ts/src/*.ts"]
}
},
"include": ["src"]
}