forked from netbirdio/android-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
29 lines (28 loc) · 941 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
{
"extends": "@tsconfig/react-native/tsconfig.json",
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react",
"types": ["styled-components-react-native", "node", "reflect-metadata", "jest"],
"typeRoots": ["./types", "./node_modules/@types"],
"strict": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"module":"ESNext",
"paths": {
"@src/": ["./src/"],
"@navigation": ["./src/navigation"],
"@navigation/*": ["./src/navigation/*"],
"@components": ["./src/components"],
"@components/*": ["./src/components/*"],
"@screens": ["./src/screens"],
"@screens/*": ["./src/screens/*"],
"@assets": ["./src/assets"],
"@assets/*": ["./src/assets/*"],
"@utils": ["./src/utils"],
"@utils/*": ["./src/utils/*"],
"react": ["./node_modules/@types/react"],
"react-native": ["./node_modules/@types/react-native"],
},
},
}