-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 900 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 900 Bytes
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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"incremental": true,
"tsBuildInfoFile": ".tscache/tsbuildinfo",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"noImplicitOverride": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"noUncheckedIndexedAccess": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler"
},
"include": [
"app",
"app.config.ts",
"App.tsx",
"index.ts",
"src",
"src/types",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"exclude": ["node_modules", ".expo", ".expo-shared"]
}