As I follow the instructions for incorporating TypeScript into my existing React Native project here, the final step instructs me to:
Run yarn tsc to type-check your new TypeScript files.
However, when I check VSCode, I am already receiving feedback from TypeScript. Do I really need to use tsc
in a React Native environment? According to this post, there may not even be a need for an outDir
and the RN documentation does recommend setting noEmit
to true
. Thank you!