This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.61 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
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": ["es2018"],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"resolveJsonModule": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"app": ["./src/app"],
"common": ["./src/app/components/common"],
"common/*": ["./src/app/components/common/*"],
"config": ["./src/config"],
"config/*": ["./src/config/*"],
"queries/*": ["./src/app/queries/*"],
"images": ["./src/app/static/images"],
"images/*": ["./src/app/static/images/*"],
"modules": ["./src/app/components/modules"],
"modules/*": ["./src/app/components/modules/*"],
"navigators": ["./src/app/components/navigators"],
"navigators/*": ["./src/app/components/navigators/*"],
"screens": ["./src/app/components/screens"],
"screens/*": ["./src/app/components/screens/*"],
"hooks": ["./src/app/hooks"],
"hooks/*": ["./src/app/hooks/*"],
"services": ["./src/app/services"],
"services/*": ["./src/app/services/*"],
"static": ["./src/app/static"],
"store": ["./src/app/store"],
"styles": ["./src/app/styles"],
"styles/*": ["./src/app/styles/*"],
"types": ["./src/app/types/index"],
"vectors": ["./src/app/static/vectors"]
},
"typeRoots": ["node_modules/@types"],
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "**/*.json", "**/*.spec.ts"]
}