I created an Expo boilerplate project that is using TypeScript.
When I run the app with expo start
, the Chrome debugger opens up at http://localhost:19001/debugger-ui/
, but in the devtools I can only see .js
files:
How can I get my .tsx
sourcefiles to show up?
I have "sourceMap": true,
in .tsconfig.json
and the .map
files are generated along the .js
files. Any more configuration I am missing here?