website/blog/2025-06-12-moving-towards-a-stable-javascript-api.md
In React Native 0.80, we're introducing two significant changes to React Native's JavaScript API — the deprecation of deep imports, and our new Strict TypeScript API. These are part of an ongoing effort to accurately define our API and offer dependable type safety to users and frameworks.
Quick takeaways:
react-native package.compilerOptions in your project's tsconfig.json.We are moving to improve and stabilise React Native's public JavaScript API — i.e. what you get when you import 'react-native'.
Historically, we've approximated this. React Native is authored in Flow, but the community has long since moved to TypeScript in open source, which is how the public API is consumed and validated for compatibility. Our types have been (lovingly) community-contributed, and since merged and aligned in our codebase. However, these have relied on manual maintenance and no automated tooling, introducing correctness gaps.
Additionally, our public JS API has been poorly defined in terms of module boundaries — e.g. internal 'react-native/Libraries/' deep imports were reachable by app code, but could frequently change as we updated these internals.
In 0.80, we're addressing these issues by deprecating deep imports, and introducing a user opt-in to a new, generated API baseline in TypeScript. We're calling this our Strict TypeScript API. Ultimately, this is the groundwork to offer a stable React Native API in the future.
react-nativeThe main change we're making to our API today is deprecating the use of deep imports (RFC), with warnings in ESLint and the JS console. Deep imports of values and types should be updated to react-native's root import.
// Before - import from subpath
import {Alert} from 'react-native/Libraries/Alert/Alert';
// After - import from `react-native`
import {Alert} from 'react-native';
This change reduces the total surface area of our JavaScript API into a fixed set of exports which we can control and make stable in a future release. We're targeting a removal of these import paths in 0.82.
:::info API feedback
Some APIs are not exported at root, and will become unavailable without deep imports. We have an open feedback thread and will be working with the community to finalize the exports in our public API. Please share your feedback!
:::
Opting out
Please bear in mind that we aim to remove deep imports from React Native's API in a future release, and these should instead be updated to the root import.
<details> <summary>**Opting out of warnings**</summary>Disable the no-deep-imports rule using overrides.
overrides: [
{
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
rules: {
'@react-native/no-deep-imports': 0,
},
},
]
Pass the disableDeepImportWarnings option to @react-native/babel-preset.
module.exports = {
presets: [
['module:@react-native/babel-preset', {disableDeepImportWarnings: true}]
],
};
Restart your app with --reset-cache to clear the Metro cache.
npx @react-native-community/cli start --reset-cache
Disable the no-deep-imports rule using overrides.
overrides: [
{
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
rules: {
'@react-native/no-deep-imports': 0,
},
},
];
Pass the disableDeepImportWarnings option to babel-preset-expo.
module.exports = function (api) {
api.cache(true);
return {
presets: [['babel-preset-expo', {disableDeepImportWarnings: true}]],
};
};
Restart your app with --clear to clear the Metro cache.
npx expo start --clear
The Strict TypeScript API is a new set of TypeScript types in the react-native package, which can be opted into via your tsconfig.json. We're shipping these alongside our existing TS types, meaning you can choose to migrate when ready.
The new types are:
react-native's index file — more tightly defining our public API, and meaning we won't break the API when making internal file changes.When the community is ready, the Strict TypeScript API will become our default API in future — synchronized with deep imports removal. This means it's a good idea to begin opting in, as you'll be ready for React Native's future stable JS API.
{
"extends": "@react-native/typescript-config",
"compilerOptions": {
...
"customConditions": ["react-native-strict-api"]
}
}
:::note Under the hood
This will instruct TypeScript to resolve react-native types from our new types_generated/ dir, instead of the previous types/ dir (manually maintained). No restart of TypeScript or your editor is required.
:::
As above, types under the Strict TypeScript API are now only resolvable from the main 'react-native' import path, enforcing package encapsulation, per our above deprecation.
// Before - import from subpath
import {Alert} from 'react-native/Libraries/Alert/Alert';
// After - MUST import from `react-native`
import {Alert} from 'react-native';
:::tip Key win
We've scoped our public API to the exports of React Native's index.js file, which we carefully maintain. This means that file changes elsewhere in our codebase will no longer be breaking changes.
:::
Types are now generated from source, rather than manually maintained. In doing this:
:::tip Key win
Because types are now generated from React Native's source code, you can be confident that the typechecker is always accurate for a given version of react-native.
:::
The Linking API is now a single interface, rather than two exports. This follows for a number of other APIs (see docs).
// Before
import {Linking, LinkingStatic} from 'react-native';
function foo(linking: LinkingStatic) {}
foo(Linking);
// After
import {Linking} from 'react-native';
function foo(linking: Linking) {}
foo(Linking);
Previous manual type definitions left the opportunity for type gaps. Under generated Flow → TypeScript, these are no longer present (and at source, benefit from Flow's additional type validation for multi-platform code).
import {Dimensions} from 'react-native';
// Before - Type error
// After - number | undefined
const {densityDpi} = Dimensions.get();
Please refer to our dedicated guide in the docs which details all breaking types changes and how to update your code.
We appreciate that any breaking change to React Native will take time for developers to update to in their apps.
The "react-native-strict-api" opt-in is stable in the 0.80 release.
:::tip Recommended
The Strict TypeScript API will become our default API in the future.
If you have time, it's worth testing the opt-in now in your tsconfig.json, to futureproof your app or library. This will immediately evaluate if there are any type errors introduced in your app under the Strict API. There may be none(!) — in which case, you're good to go.
:::
In the future, we will require all codebases to use our Strict API, and will remove the legacy types.
The timeline for this will be based on community feedback. For at least the next two React Native releases, the Strict API will remain an opt-in.
Please migrate to the root 'react-native' import path.
'react-native/Libraries/Alert/Alert') are becoming private APIs. Without preventing access to implementation files inside React Native, we can’t offer a stable JavaScript API.Both apps and libraries can opt in at their own pace, since tsconfig.json will only affect the immediate codebase.
node_modules is excluded from validation by the TypeScript server in a React Native project. Therefore, your package's exported type definitions are the source of truth.💡 We want feedback! As with changed subpath imports, if you encounter any integration issues with the Strict API, please let us know on GitHub.
</details> <details> <summary> **Does this guarantee a final API for React Native yet?** </summary>Sadly, not yet. In 0.80, we've made a tooling investment so that React Native's existing JS API baseline can be accurately consumed via TypeScript — enabling future stable changes. We're formalizing the existing API you know and love.
In the future, we will take action to finalise the APIs we currently offer in core — across each language surface. API changes will be communicated via RFCs/announcements, and typically a deprecation cycle.
</details> <details> <summary> **Why isn't React Native written in TypeScript?** </summary>React Native is core infrastructure at Meta. We test every merged change across our Family of Apps, before they hit general open source availability.
At this scale and sensitivity, correctness matters. The bottom line is that Flow offers us greater performance and greater strictness than TypeScript, including specific multi-platform support for React Native.
</details>These changes were made possible by Iwo Plaza, Jakub Piasecki, Dawid Małecki, Alex Hunt, and Riccardo Cipolleschi.
Thanks also to Pieter Vanderwerff, Rubén Norte, and Rob Hogan for their additional help and input.
:::note Learn more
<div style={{ display: 'flex', alignItems: 'center', gap: 40 }}> <div style={{ flex: 1 }}> <strong style={{ display: 'block', marginTop: 8, marginBottom: 8 }}>Watch the talk!</strong> <span style={{ display: 'block', marginBottom: 8 }}>We shared a deep dive into our motivations and the work behind the Strict TypeScript API at <strong>App.js 2025</strong>.</span> <p style={{ marginBottom: 8 }}>**[View on YouTube](https://www.youtube.com/live/UTaJlqhTk2g?si=SDRmj80kss7hXuGG&t=6520)**</p> </div> </div>:::