Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-redundant-undefined": "^0.4.0",
"eslint-plugin-relay": "^1.8.3",
Expand Down Expand Up @@ -111,6 +110,7 @@
"ws": "^6.2.3"
},
"resolutions": {
"eslint-plugin-react-hooks": "6.1.0-canary-12bc60f5-20250613",
"react-is": "19.1.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* @format
*/

import type {ReportFullyDrawnViewType} from './ReportFullyDrawnViewNativeComponent';

import {View} from 'react-native';

export default View;
export default View as ReportFullyDrawnViewType;
1 change: 1 addition & 0 deletions private/react-native-fantom/config/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const config /*: InputConfigT */ = {
// We need to wrap the default transformer so we can run it from source
// using babel-register.
babelTransformerPath: path.resolve(__dirname, 'metro-babel-transformer.js'),
hermesParser: true,
},
serializer: {
// Force an empty list so Metro doesn't inject InitializeCore in tests.
Expand Down
Loading
Loading