Initial Open Sourcing of React Native Compatibility Check (#49311)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49311

This tool enables checking the boundary between JavaScript and Native for
backwards incompatible changes to protect against crashes.

This is useful for:

- Local Development
- Over the Air updates on platforms that support it
- Theoretically: Server Components with React Native

Check out the Readme for more information

Changelog: [General][Added] Open Sourcing React Native's Compatibility Check

Reviewed By: yungsters

Differential Revision: D69277991

fbshipit-source-id: 886a983d4b17609ce771cdd93b75f34bbd8417dc
This commit is contained in:
Eli White
2025-02-11 08:23:16 -08:00
committed by Facebook GitHub Bot
parent 28945c68da
commit 6590bb3e14
79 changed files with 10315 additions and 0 deletions
+4
View File
@@ -54,6 +54,10 @@ const buildConfig: BuildConfig = {
emitTypeScriptDefs: true,
target: 'node',
},
'react-native-compatibility-check': {
emitTypeScriptDefs: true,
target: 'node',
},
},
};