-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (23 loc) · 751 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (23 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"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. */,
"strict": true,
"esModuleInterop": true,
"paths": {
"@app/assets": ["./assets"],
"@app/api": ["./src/api"],
"@app/components/*": ["./src/components/*"],
"@app/context": ["./src/context"],
"@app/data": ["./src/data"],
"@app/hooks": ["./src/hooks"],
"@app/models": ["./src/models"],
"@app/navigation": ["./src/navigation"],
"@app/screens": ["./src/screens"],
"@app/styles": ["./src/stylings"],
"@app/utils": ["./src/utils"]
}
}
}