-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtsconfig-jest.json
More file actions
18 lines (18 loc) · 895 Bytes
/
tsconfig-jest.json
File metadata and controls
18 lines (18 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"extends": "./tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@react-native-firebase/app": ["packages/app/lib"],
"@react-native-firebase/app/dist/module/common": ["packages/app/lib/common"],
"@react-native-firebase/app/dist/module/common/*": ["packages/app/lib/common/*"],
"@react-native-firebase/app/dist/module/internal": ["packages/app/lib/internal"],
"@react-native-firebase/app/dist/module/internal/*": ["packages/app/lib/internal/*"],
"@react-native-firebase/app/dist/module/types/internal": ["packages/app/lib/types/internal"],
"@react-native-firebase/app/dist/module/types/common": ["packages/app/lib/types/common"],
"@react-native-firebase/auth": ["packages/auth/lib"],
"@react-native-firebase/app-check": ["packages/app-check/lib"],
"@react-native-firebase/ai": ["packages/ai/lib"]
}
}
}