-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 997 Bytes
/
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
{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"strict": false,
"baseUrl": ".",
"paths": {
"@services/*": ["src/services/*"],
"@constants/*": ["src/common/constants/*"],
"@stores": ["src/common/stores"],
"@enums/*": ["src/common/enums/*"],
"@interfaces/*": ["src/common/interfaces/*"],
"@exceptions/*": ["src/common/exceptions/*"],
"@utils/*": ["src/common/utils/*"],
"@schemas/*": ["src/common/schemas/*"],
"@hooks/*": ["src/common/hooks/*"],
"@components/*": ["src/components/*"],
"@screens/*": ["src/screens/*"],
"@assets": ["src/assets"],
"@stacks/*": ["src/routes/stack/*"],
"@authStack/*": ["src/routes/auth/*"],
"@adminStack/*": ["src/routes/admin/*"],
"@userStack/*": ["src/routes/user/*"],
"@colors": ["src/theme/colors.ts"]
}
},
"include": ["src"]
}