You've already forked android-client
mirror of
https://github.com/netbirdio/android-client.git
synced 2026-05-22 17:10:49 -07:00
30 lines
941 B
JSON
30 lines
941 B
JSON
{
|
|
"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"],
|
|
},
|
|
},
|
|
}
|
|
|