Files
address-verification-app/tsconfig.json

39 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2022-11-30 10:13:33 +05:30
// prettier-ignore
{
"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 */
"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/*"],
}
},
2022-11-30 10:13:33 +05:30
}