2022-11-30 10:13:33 +05:30
|
|
|
// prettier-ignore
|
|
|
|
|
{
|
2022-12-07 22:50:58 +05:30
|
|
|
"extends": "@tsconfig/react-native/tsconfig.json", /* Recommended React Native TSConfig base */
|
2022-11-30 10:13:33 +05:30
|
|
|
"compilerOptions": {
|
|
|
|
|
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
2023-01-09 16:37:11 +05:30
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2023-09-20 13:58:55 +05:30
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"es5",
|
|
|
|
|
"es2020"
|
|
|
|
|
],
|
2022-11-30 10:13:33 +05:30
|
|
|
/* Completeness */
|
2023-09-20 13:58:55 +05:30
|
|
|
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2023-09-22 12:22:19 +05:30
|
|
|
"@root/*": ["."],
|
2023-09-20 13:58:55 +05:30
|
|
|
"@components/*": ["src/components/*"],
|
|
|
|
|
"@hooks": ["src/hooks/index"],
|
|
|
|
|
"@hooks/*": ["src/hooks/*"],
|
|
|
|
|
"@actions/*": ["src/action/*"],
|
|
|
|
|
"@reducers/*": ["src/reducer/*"],
|
|
|
|
|
"@constants/*": ["src/constants/*"],
|
|
|
|
|
"@screens/*": ["src/screens/*"],
|
|
|
|
|
"@services/*": ["src/services/*"],
|
2023-10-11 17:56:44 +05:30
|
|
|
"@interfaces/*": ["src/types/*"],
|
2023-09-20 13:58:55 +05:30
|
|
|
"@common/*": ["src/common/*"],
|
|
|
|
|
"@assets/*": ["src/assets/*"],
|
|
|
|
|
"@store": ["src/store/store"],
|
2023-09-20 16:05:41 +05:30
|
|
|
"@utils/*": ["src/components/utlis/*"],
|
2023-09-20 13:58:55 +05:30
|
|
|
"@rn-ui-lib/components/*": ["RN-UI-LIB/src/components/*"],
|
|
|
|
|
"@rn-ui-lib/icons/*": ["RN-UI-LIB/src/Icons/*"],
|
|
|
|
|
"@rn-ui-lib/styles": ["RN-UI-LIB/src/styles/index"],
|
|
|
|
|
"@rn-ui-lib/colors": ["RN-UI-LIB/src/styles/colors"],
|
|
|
|
|
"@rn-ui-lib/utils/*": ["RN-UI-LIB/src/utlis/*"],
|
|
|
|
|
}
|
2023-04-20 16:31:29 +05:30
|
|
|
},
|
2022-11-30 10:13:33 +05:30
|
|
|
}
|