-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
47 lines (47 loc) · 927 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"exclude": [
"backup/",
"web-build/",
"note.txt",
"test.json",
"test.html",
"test.ts"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"lib": [
"dom",
"esnext"
],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"typeRoots": [
"src/types/patches",
"node_modules/@types"
],
"baseUrl": "./",
"paths": {
"redux-firestore": [
"src/types/overrides/redux-firestore"
]
},
"target": "es5",
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "esnext",
"isolatedModules": true,
"downlevelIteration": true,
"incremental": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"extends": "expo/tsconfig.base"
}