We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.d.ts
1 parent 4eec473 commit d332183Copy full SHA for d332183
packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js
@@ -27,7 +27,9 @@ function filterJSFile(file: string) {
27
// NativeSampleTurboModule is for demo purpose. It should be added manually to the
28
// app for now.
29
!file.endsWith('NativeSampleTurboModule.js') &&
30
- !file.includes('__tests')
+ !file.includes('__tests') &&
31
+ // Ignore TypeScript type declaration files.
32
+ !file.endsWith('.d.ts')
33
);
34
}
35
0 commit comments