-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 838 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends": "../../tsconfig.packages.base.json",
"compilerOptions": {
"baseUrl": ".",
"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"]
}
},
"include": ["lib/**/*"],
"exclude": ["node_modules", "dist", "__tests__", "**/*.test.ts"]
}