diff --git a/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js b/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js index 7de7a602b34..f9a0a07d8c9 100644 --- a/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js +++ b/packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js @@ -29,6 +29,9 @@ fileList.forEach(file => { .filter( f => /^(Native.+|.+NativeComponent)/.test(path.basename(f)) && + // NativeUIManager will be deprecated by Fabric UIManager. + // For now, ignore this spec completely because the types are not fully supported. + !f.endsWith('NativeUIManager.js') && !f.includes('__tests'), ); allFiles.push(...dirFiles);