-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (55 loc) · 1.81 KB
/
Copy pathtsconfig.json
File metadata and controls
58 lines (55 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["node"],
/* Linting */
"strict": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"noImplicitAny": false,
/* Paths (baseUrl removed in TS 6; paths resolve relative to this file) */
"paths": {
"@/__tests__": ["./src/__tests__"],
"@/__tests__/*": ["./src/__tests__/*"],
"@/ai-system": ["./src/ai-system"],
"@/ai-system/*": ["./src/ai-system/*"],
"@/container-client": ["./src/container-client"],
"@/container-client/*": ["./src/container-client/*"],
"@/container-provisioning": ["./src/container-provisioning"],
"@/container-provisioning/*": ["./src/container-provisioning/*"],
"@/env": ["./src/env"],
"@/env/*": ["./src/env/*"],
"@/i18n": ["./src/i18n"],
"@/platform": ["./src/platform"],
"@/platform/*": ["./src/platform/*"],
"@/resources": ["./src/resources"],
"@/resources/*": ["./src/resources/*"],
"@/rpc": ["./src/rpc"],
"@/rpc/*": ["./src/rpc/*"],
"@/utils": ["./src/utils"],
"@/utils/*": ["./src/utils/*"],
"@/web-app": ["./src/web-app"],
"@/web-app/*": ["./src/web-app/*"],
"@/cli": ["./support/cli"],
"@/cli/*": ["./support/cli/*"]
}
},
"include": ["src", "tests"]
}