Since Expo SDK 31 there is TypeScript support integrated. That’s great.
However, as far as I can tell, it uses babel-typescript
. For my project, running on Expo SDK 33, I need to use react-native-typescript-transformer
instead. Is this possible? How I can configure this change?
PS: The reason I need to use react-native-typescript-transformer
is that I need support for TypeScript namespaces and enums. I use swagger-codegen to generate my REST client layer. But all the generators I found use namespaces (and also enums that are not supported either by Babel 7 if I understood well).