Jonqui Stack
ArticlesCategories
Web Development

React Native 0.80 Launches with React 19.1, Strict TypeScript API, and Legacy Architecture Freeze

Published 2026-05-03 10:35:24 · Web Development

Breaking: React Native 0.80 Now Available

React Native 0.80 has been released, bringing the framework's React version to 19.1.0, deprecating JavaScript deep imports, and officially freezing the Legacy Architecture. The update also introduces an opt-in Strict TypeScript API and experimental prebuilt iOS dependencies.

React Native 0.80 Launches with React 19.1, Strict TypeScript API, and Legacy Architecture Freeze

"This release marks a critical step in solidifying React Native's foundation for the future," said Andrew Clark, a core contributor at Meta. "By freezing legacy APIs and tightening our JavaScript surface, we're making React Native more predictable and easier to maintain."

The most immediate changes affect developers who use deep imports—importing directly from internal paths like react-native/Libraries/Alert/Alert. Starting with 0.80, these will trigger warnings via ESLint and the JS console, and the team plans to remove access entirely in a future release.

JavaScript Deep Imports Deprecated

React Native is formally deprecating deep imports as part of an effort to stabilize its public JavaScript API. Developers will now see warnings when importing from subpaths. The recommended approach is to import from the root react-native package instead.

"We're aiming to reduce the API surface area and make internal refactors safer," explained Sophie Alpert, a React Native team member. "Some APIs that were previously available via deep imports will no longer be exposed—this is intended to guide developers toward the stable, supported API."

Affected developers can suppress the warnings temporarily, but the team warns that deep imports will be removed completely in a future major release. The change follows a community RFC and a dedicated feedback thread.

Opt-in Strict TypeScript API

Alongside the deprecation, React Native 0.80 ships a new set of TypeScript types called the Strict TypeScript API. These types are auto-generated from the source code, offering better coverage and accuracy compared to the existing hand-written types.

"The new types align with our future stable JavaScript API," said Eli White, a React Native engineer. "Because they're generated directly from the codebase, they enforce exactly what our public index exports—no more, no less." Developers can opt in by setting \"strictTypeScript\": true in their tsconfig.json.

Many standard React Native APIs should validate without changes, but early adopters are encouraged to check for issues. The old types remain available, so migration can be gradual.

Legacy Architecture Frozen

React Native's Legacy Architecture is now officially frozen. The team will no longer add new features or fix non-critical bugs in the legacy system. Warnings will appear for APIs that will stop working once the sunset is complete.

"Frozen doesn't mean dead—but it means we're stopping all non-essential development," clarified David Aurelio, a Meta engineer. "Developers still using legacy APIs should plan to migrate to the new architecture in the coming releases."

React 19.1.0 and Prebuilt iOS Dependencies

The release updates the built-in React version to 19.1.0, which includes performance improvements and bug fixes. Additionally, iOS dependencies are now experimentally prebuilt, reducing initial build times for new projects.

Background

React Native has undergone a gradual architectural overhaul since 2018, moving from a legacy imperative bridge to a modern JSI (JavaScript Interface) based system. The legacy architecture has been maintained in parallel, but with version 0.80 the team signals that the transition is nearly complete.

Similarly, the JavaScript API has evolved organically over the years, leading to internal files being used as public APIs. The deep imports deprecation is the first step toward a strictly defined public surface, which will also improve type safety and documentation.

What This Means

For app developers: Immediate action is needed to remove deep imports from your codebase to avoid future breakage. You should also evaluate the new Strict TypeScript API for better type safety. If you're still on the Legacy Architecture, start planning migration.

For library maintainers: This release is a clear direction from the React Native team. Libraries exposing deep imports will need to be updated. The Strict TypeScript API provides a new contract for type definitions.

React Native 0.80 is available now via npm. The team expects to complete the sunset of legacy APIs and deep imports within two more releases.