I started a new Expo project with TypeScript integration.
After launching the app using expo start
, I noticed that the Chrome debugger only displays .js
files at
http://localhost:19001/debugger-ui/
:
https://i.stack.imgur.com/cmyy9.png
How can I make sure my .tsx
source files are visible in the debugger?
I have already set "sourceMap": true,
in my .tsconfig.json
file and the corresponding .map
files are being generated. Am I missing any additional configuration here?