-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.05 KB
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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"paths": {
"@/*": ["./*"]
},
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"maxNodeModuleJsDepth": 0,
"types": []
},
"include": [
"app/**/*.ts",
"app/**/*.tsx",
"components/**/*.ts",
"components/**/*.tsx",
"context/**/*.ts",
"context/**/*.tsx",
"services/**/*.ts",
"services/**/*.tsx",
"utils/**/*.ts",
"utils/**/*.tsx",
"models/**/*.ts",
"models/**/*.tsx",
"hooks/**/*.ts",
"hooks/**/*.tsx",
"constants/**/*.ts",
"constants/**/*.tsx",
"migrations/**/*.ts",
"migrations/**/*.tsx",
"queue/**/*.ts",
"queue/**/*.tsx",
"services/*.ts",
"listeners/*.ts",
"*.ts",
"*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts",
"app.config.ts",
"portal-cloud-backup.d.ts"
],
"exclude": [
"node_modules",
".expo",
"android",
"ios",
"build",
"dist",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
}