From 7f7b5dc29e13dd22006c3a3e8e4099b4d2eb7a9b Mon Sep 17 00:00:00 2001 From: Umidbek Karimov Date: Wed, 14 Mar 2018 12:15:48 +0500 Subject: [PATCH] fix(expo/tsconfig): Add `dom` lib to add `window.fetch` types. --- types/expo/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/expo/tsconfig.json b/types/expo/tsconfig.json index 03b9c139b1..7711f49776 100644 --- a/types/expo/tsconfig.json +++ b/types/expo/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "module": "commonjs", "lib": [ + "dom", "es6" ], "jsx": "react", @@ -21,4 +22,4 @@ "index.d.ts", "expo-tests.tsx" ] -} \ No newline at end of file +}