-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
55 lines (55 loc) · 1.05 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": [
"dom",
"esnext"
],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"baseUrl": ".",
"paths": {
"*": [
"src/*"
],
"@components/*": [
"src/components/*"
],
"@container/*": [
"src/container/*"
],
"@elements/*": [
"src/elements/*"
],
"@configs/*": [
"src/configs/*"
],
"@navigation/*": [
"src/navigation/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@svg/*": [
"./src/svg/*"
],
"@images/*": [
"src/images/*"
],
"@configs": [
"src/configs/index"
],
"@store/*": [
"src/store/*"
],
"react-native-redash/lib/module/v1": [
"./node_modules/react-native-redash/lib/typescript/v1/index.d.ts"
]
}
},
"extends": "expo/tsconfig.base"
}