-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.tsgo.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathtsconfig.tsgo.json
File metadata and controls
40 lines (40 loc) · 1.36 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
35
36
37
38
39
40
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["react", "react-dom"],
"typeRoots": ["./types", "./node_modules/@types"],
"rootDir": "./",
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"stableTypeOrdering": true,
"paths": {
"@huggingface/transformers": [
"./packages/ai-core/node_modules/@huggingface/transformers/types/transformers.d.ts"
],
"@domain/collab-transport": ["./packages/collab-transport/src/index.ts"],
"@domain/ai-core": ["./packages/ai-core/src/index.ts"],
"@domain/worker-bus": ["./packages/worker-bus/src/index.ts"],
"@domain/desktop-contracts": ["./packages/desktop-contracts/src/index.ts"]
}
},
"include": ["."],
"exclude": ["node_modules", "dist", ".storybook", ".mcp", "storybook-static"]
}