-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
58 lines (58 loc) · 1.42 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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"jsx": "react-native",
"lib": [
"es2020",
"dom",
"es6",
"ESNext.AsyncIterable"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@api/*": ["./src/api/*"],
"@components/*": ["./src/components/*"],
"@modules/*": ["./src/modules/*"],
"@hooks/*": ["./src/hooks/*"],
"@screens/*": ["./src/screens/*"],
"@utils/*": ["./src/utils/*"],
"@types/*": ["./src/types/*"],
},
"strict": true,
"strictNullChecks": true,
"allowUnusedLabels": false,
"noImplicitAny": true,
"noImplicitThis": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true
},
"files": [],
"include": [
".expo/types/**/*.ts",
"expo-env.d.ts",
"./src/**/*",
"tamagui.config.ts",
],
"exclude": [
"node_modules",
"tmp"
]
}