-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (22 loc) · 727 Bytes
/
tsconfig.json
File metadata and controls
23 lines (22 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// prettier-ignore
{
"extends": "@tsconfig/react-native/tsconfig.json", /* Recommended React Native TSConfig base */
"compilerOptions": {
"jsx": "react",
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Completeness */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"baseUrl": ".",
"allowJs": true,
"paths": {
"@screens": ["src/screens"],
"@components": ["src/components"],
"@helper": ["./src/helper"],
"@assets": ["./src/assets/images"],
"@api": ["./src/api"],
"@server": ["./src/api/server"],
"@services": ["./src/api/services"],
"@theme": ["./src/theme"],
}
}
}