-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
30 lines (30 loc) · 968 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"paths": {
"@/*": ["./*"],
"@components/*": ["./src/components/*"],
"@hooks/*": ["./src/hooks/*"],
"@navigation/*": ["./src/navigation/*"],
"@screens/*": ["./src/screens/*"],
"@themes/*": ["./src/themes/*"],
"@utils/*": ["./src/utils/*"],
"@atoms/*": ["./src/atoms/*"],
"@assets/*": ["./assets/*"],
"@firebase/auth": [
"./node_modules/@firebase/auth/dist/index.rn.d.ts"
]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"],
"extends": "expo/tsconfig.base"
}