From d1cb7dc6ea1bfe18b7f06437c1e05e40af3edb43 Mon Sep 17 00:00:00 2001 From: Ashoat Tevosyan Date: Thu, 15 Jul 2021 17:29:48 -0400 Subject: [PATCH] RN0.64 42/*: Turn off types_first in native Summary: This silences ~1000 errors and lets us move forward with the React Native 0.64 upgrade without blocking on `types_first`. (I'll try to figure out `types_first` as a later step.) Test Plan: I tested the whole upgrade together: 1. Compile and run iOS and Android on release and debug 2. Make sure Flow typechecks 3. Make sure debugging tools still work Reviewers: palys-swm Reviewed By: palys-swm Subscribers: KatPo, Adrian, atul Differential Revision: https://phabricator.ashoat.com/D1738 --- native/.flowconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native/.flowconfig b/native/.flowconfig index 76a759c9ef..2b35cc31c6 100644 --- a/native/.flowconfig +++ b/native/.flowconfig @@ -49,6 +49,8 @@ suppress_type=$FlowFixMe suppress_type=$FlowFixMeProps suppress_type=$FlowFixMeState +types_first=false + [lints] sketchy-null-number=warn sketchy-null-mixed=warn