I'm very new to TypeSccript. I'm trying to convert my React Native to use TypeScript. I followed the instructions here: https://reactnative.dev/docs/typescript
After running yarn tsc
I get errors like:
node_modules/@react-navigation/stack/lib/typescript/src/types.d.ts:99:67 - error TS2339: Property 'style' does not exist on type 'PropsWithChildren<AnimatedProps<TextProps & RefAttributes<Text>>>'.99 headerTitleStyle?: React.ComponentProps<typeof Animated.Text>['style'];
Is this an error in the node module or in my own code? Any tips on what I need to do?
I have a minimal project here:https://github.com/jauggy/React-Native-TypeScript-Test