updated tsconfig to resolve module imports error

This commit is contained in:
Sadaqat Ali 2024-06-28 21:50:54 +05:00
parent c1acf733d4
commit a260481054

View File

@ -1,3 +1,10 @@
{
"extends": "@react-native/typescript-config/tsconfig.json"
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"baseUrl": "src",
"paths": {
"*": ["*"]
},
"moduleResolution": "node"
}
}