-
-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 594 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 594 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
25
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@components/*": ["app/components/*"],
"@screens/*": ["app/screens/*"],
"@lib/*": ["lib/*"],
"@assets/*": ["assets/*"],
"@public/*": ["public/*"],
"@db": ["db/db"]
},
"allowJs": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
".expo/types/**/*.ts",
"expo-env.d.ts",
"app/_layout.tsx"
]
}