Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Continuing #11426. This PR upgrades Flow to v0.132.0, a version which forbids using implicit
any
as a type, which previously led to incorrectly typed or untyped code that Flow ignored. Similar to #11400 but extends to all other libraries we import. Then further upgrades to v0.142.0, the last version that supportstypes_first = false
.In particular, adds types for
@mapbox/grid-index
and@mapbox/tiny-sdf
(previously untyped and assumedObject
=any
), and makes surePoint
type is used explicitly where it's referenced (for some reason Flow didn't complain when it didn't). Also note that I had to disable a few errors withany
or$FlowFixMe
in places where proper typing is very difficult — I would leave fixing this for later when we're on the latest Flow version.Launch Checklist