-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
31 lines (31 loc) · 934 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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"strict": true,
"baseUrl": "./",
"paths": {
"@environments/*": ["environments/*"],
"@assets/*": ["assets/*"],
"@animations/*": ["assets/animations/*"],
"@fonts/*": ["assets/fonts/*"],
"@images/*": ["assets/images/*"],
"@icons/*": ["assets/icons/*"],
"@sounds/*": ["assets/sounds/*"],
"@app/*": ["app/*"],
"@core/*": ["app/core/*"],
"@contexts/*": ["app/core/contexts/*"],
"@listeners/*": ["app/core/listeners/*"],
"@hooks/*": ["app/core/hooks/*"],
"@utils/*": ["app/core/utils/*"],
"@screens/*": ["app/screens/*"],
"@shared/*": ["app/shared/*"],
"@components/*": ["app/shared/components/*"],
"@interfaces/*": ["app/shared/interfaces/*"],
"@enums/*": ["app/shared/enums/*"],
"@mocks/*": ["app/shared/mocks/*"],
"@theme": ["app/theme.ts"]
}
}
}