forked from czy0729/Bangumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·88 lines (88 loc) · 1.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@_": [
"src/screens/_"
],
"@_/*": [
"src/screens/_/*"
],
"@components": [
"src/components"
],
"@components/*": [
"src/components/*"
],
"@constants": [
"src/constants"
],
"@constants/*": [
"src/constants/*"
],
"@screens": [
"src/screens"
],
"@screens/*": [
"src/screens/*"
],
"@stores": [
"src/stores"
],
"@stores/*": [
"src/stores/*"
],
"@styles": [
"src/styles"
],
"@styles/*": [
"src/styles/*"
],
"@tinygrail": [
"src/screens/tinygrail"
],
"@tinygrail/*": [
"src/screens/tinygrail/*"
],
"@utils": [
"src/utils"
],
"@utils/*": [
"src/utils/*"
],
"@types": [
"src/types"
],
"@types/*": [
"src/types/*"
]
},
"allowJs": true,
"esModuleInterop": true,
"jsx": "react-native",
"types": [
"react",
"react-native"
],
"lib": [
"DOM",
"ESNext"
],
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "ESNext"
},
"exclude": [
"node_modules",
"dist",
"android",
"src/assets",
"web"
],
"extends": "expo/tsconfig.base"
}