-
Notifications
You must be signed in to change notification settings - Fork 21
/
tsconfig.json
24 lines (24 loc) · 946 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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"baseUrl": "./src",
"paths": {
"@react-native-ios/api/*": ["./api/*"],
"@react-native-ios/assets/*": ["./assets/*"],
"@react-native-ios/configs/*": ["./configs/*"],
"@react-native-ios/constants/*": ["./constants/*"],
"@react-native-ios/components/*": ["./components/*"],
"@react-native-ios/helpers/*": ["./helpers/*"],
"@react-native-ios/hooks/*": ["./hooks/*"],
"@react-native-ios/jest/*": ["./jest/*"],
"@react-native-ios/navigators/*": ["./navigators/*"],
"@react-native-ios/providers/*": ["./providers/*"],
"@react-native-ios/screens/*": ["./screens/*"],
"@react-native-ios/store/*": ["./store/*"],
"@react-native-ios/storybook/*": ["./storybook/*"],
"@react-native-ios/translations/*": ["./translations/*"],
"@react-native-ios/utils/*": ["./utils/*"]
}
}
}