-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.44 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.44 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
{
"compilerOptions": {
"rootDir": ".",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Bundler",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@react-native-firebase/app/lib/common/*": ["../app/dist/typescript/lib/common/*"],
"@react-native-firebase/app/lib/common": ["../app/dist/typescript/lib/common"],
"@react-native-firebase/app/lib/internal/web/*": [
"../app/dist/typescript/lib/internal/web/*"
],
"@react-native-firebase/app/lib/internal/*": [
"../app/dist/typescript/lib/internal/*"
],
"@react-native-firebase/app/lib/internal": ["../app/dist/typescript/lib/internal"],
"@react-native-firebase/app": ["../app/dist/typescript/lib"],
"@react-native-firebase/auth": ["../auth/lib"],
"@react-native-firebase/app-check": ["../app-check/dist/typescript/lib"]
}
},
"include": ["lib/**/*"],
"exclude": ["node_modules", "dist", "__tests__", "**/*.test.ts"]
}