forked from bitzlato/baseapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.38 KB
/
tsconfig.json
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
{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "es2022",
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"noEmit": true,
"skipLibCheck": true,
"paths": {
"shared/standaloneComponents": ["web/src/components/standalone/standaloneComponents"],
"shared/Header": ["web/src/components/shared/Header/Header"],
"shared/MobileFooter": ["web/src/components/shared/MobileFooter/MobileFooter"],
"shared/Footer": ["web/src/components/shared/Footer/Footer"],
"shared/Box": ["web/src/components/ui/Box"],
"shared/Button": ["web/src/components/ui/Button"],
"shared/Heading": ["web/src/components/ui/Heading"],
"shared/Stack": ["web/src/components/ui/Stack"],
"shared/Text": ["web/src/components/ui/Text"],
"shared/getThemeClassName": ["web/src/theme/getThemeClassName"],
"shared/types": ["web/src/components/shared/sharedTypes"],
"marketDocs/Swagger": ["market-docs/src/Swagger"],
"marketDocs/WebSocketApi": ["market-docs/src/WebSocketApi"]
}
},
"exclude": ["./web/build", "./web/public"]
}