-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 799 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 799 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
26
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"jsx": "react-native",
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"~components": ["src/components"],
"~constants": ["src/constants"],
"~components/*": ["src/components/*"],
"~graphql": ["src/graphql"],
"~graphql/*": ["src/graphql/*"],
"~themes": ["src/themes"],
"~store/*": ["src/store/*"],
"~store": ["src/store"],
"~reducers/*": ["src/store/reducers/*"],
"~reducers": ["src/store/reducers"],
"~views/*": ["src/views/*"],
"~services/*": ["src/services/*"],
"~assets/*": ["src/assets/*"],
"~images/*": ["src/assets/images/*"],
"~animations/*": ["src/assets/animations/*"],
"~src/*": ["src/*"]
}
}
}