From a260481054636753980056aaf1f929a799da3168 Mon Sep 17 00:00:00 2001 From: Sadaqat Ali <48380998+aliseyalvi@users.noreply.github.com> Date: Fri, 28 Jun 2024 21:50:54 +0500 Subject: [PATCH] updated tsconfig to resolve module imports error --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 20e6bcbb4..14aa44a51 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,10 @@ { - "extends": "@react-native/typescript-config/tsconfig.json" + "extends": "@react-native/typescript-config/tsconfig.json", + "compilerOptions": { + "baseUrl": "src", + "paths": { + "*": ["*"] + }, + "moduleResolution": "node" + } } \ No newline at end of file