forked from rainbow-me/rainbow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
65 lines (65 loc) · 2.46 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": ["esnext", "dom"],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"baseUrl": ".",
"paths": {
"@rainbow-me/apollo": ["./src/apollo"],
"@rainbow-me/apollo/*": ["./src/apollo/*"],
"@rainbow-me/assets": ["./src/assets"],
"@rainbow-me/config": ["./src/config"],
"@rainbow-me/context": ["./src/context"],
"@rainbow-me/design-system": ["src/design-system"],
"@rainbow-me/entities": ["src/entities"],
"@rainbow-me/handlers": ["./src/handlers"],
"@rainbow-me/handlers/*": ["./src/handlers/*"],
"@rainbow-me/helpers": ["./src/helpers"],
"@rainbow-me/helpers/*": ["./src/helpers/*"],
"@rainbow-me/hooks": ["src/hooks"],
"@rainbow-me/images": ["src/components/images"],
"@rainbow-me/model": ["src/model"],
"@rainbow-me/model/*": ["src/model/*"],
"@rainbow-me/navigation": ["src/navigation"],
"@rainbow-me/navigation/*": ["src/navigation/*"],
"@rainbow-me/networkTypes": ["./src/helpers/networkTypes"],
"@rainbow-me/parsers": ["src/parsers"],
"@rainbow-me/raps": ["src/raps"],
"@rainbow-me/react-query": ["./src/react-query"],
"@rainbow-me/react-query/*": ["./src/react-query/*"],
"@rainbow-me/redux": ["src/redux"],
"@rainbow-me/redux/*": ["src/redux/*"],
"@rainbow-me/references": ["src/references"],
"@rainbow-me/routes": ["src/navigation/routesNames"],
"@rainbow-me/styles": ["src/styles"],
"@rainbow-me/styled-components": ["src/styled-thing"],
"@rainbow-me/utilities": ["./src/helpers/utilities"],
"@rainbow-me/utils": ["src/utils"],
"@rainbow-me/utils/*": ["src/utils/*"],
"logger": ["src/utils/logger"],
"react-native-cool-modals": ["src/react-native-cool-modals"],
"react-native-yet-another-bottom-sheet": [
"src/react-native-yet-another-bottom-sheet"
],
"@rainbow-me/animated-charts": ["src/react-native-animated-charts/src"],
"react-native-shadow-stack": ["src/react-native-shadow-stack"]
},
"resolveJsonModule": true
},
"globals": ["useTheme", "ios", "android", "web", "__DEV__", "IS_DEV"],
"exclude": [
"ios",
"patches/reanimated",
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
]
}