-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
23 lines (23 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
{
"extends": "../../tsconfig.packages.base.json",
"compilerOptions": {
"rootDir": ".",
"paths": {
"@react-native-firebase/app/dist/module/common/*": ["../app/dist/typescript/lib/common/*"],
"@react-native-firebase/app/dist/module/common": ["../app/dist/typescript/lib/common"],
"@react-native-firebase/app/dist/module/internal/web/*": [
"../app/dist/typescript/lib/internal/web/*"
],
"@react-native-firebase/app/dist/module/internal/*": [
"../app/dist/typescript/lib/internal/*"
],
"@react-native-firebase/app/dist/module/internal": ["../app/dist/typescript/lib/internal"],
"@react-native-firebase/app": ["../app/dist/typescript/lib"],
"@react-native-firebase/app/dist/module/types/internal": ["../app/dist/typescript/lib/types/internal"],
"@react-native-firebase/app/dist/module/types/common": ["../app/dist/typescript/lib/types/common"],
},
"types": ["react-native", "node"]
},
"include": ["lib/**/*"],
"exclude": ["node_modules", "dist", "__tests__", "**/*.test.ts"]
}