From f3be4b9fcfe7e540485fe0b66223134e7f07c336 Mon Sep 17 00:00:00 2001 From: osdnk Date: Tue, 7 Jan 2020 07:35:19 -0500 Subject: [PATCH] fix: add paths to tsconfig.json --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 57a9eae65..869005ba7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,11 @@ "baseUrl": ".", "paths": { "react-navigation": ["react-navigation"], - "react-navigation-stack": ["./src/index"] + "react-navigation-stack": ["./src/index"], + "react-native-gesture-handler": ["react-native-gesture-handler", "example/node_modules/react-native-gesture-handler/react-native-gesture-handler"], + "@react-native-community/masked-view": ["@react-native-community/masked-view"], + "react-native-safe-area-context": ["react-native-safe-area-context"], + "react-native-screens": ["react-native-screens"] }, "allowUnreachableCode": false, "allowUnusedLabels": false,