-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
25 lines (24 loc) · 867 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
// prettier-ignore
{
"extends": "@tsconfig/react-native/tsconfig.json", /* Recommended React Native TSConfig base */
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Completeness */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@api/*": ["src/api/*"],
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@constants/*": ["src/constants/*"],
"@model/*": ["src/model/*"],
"@navigation/*": ["src/navigation/*"],
"@screens/*": ["src/screens/*"],
"@utils/*": ["src/utils/*"],
"@state/*": ["src/state/*"],
"@contexts/*": ["src/contexts/*"],
"@hooks/*": ["src/hooks/*"]
}
}
}