When I open my app in Expo and press "Open JS Debugger", a separate window opens and react native debugger still waiting for connect. When I close this window, JS Debugger automatically turns off. After that I do these steps again and it opens in a separate window again.
Here is this separate window
Interestingly, that in another project it opens in react native debugger. I doubt, that the problem is because i use TS instead of JS.
I have been trying to fix this problem by searching in google but nothing worked for me.
2
Answers
Just go to your app.json file add this to your expo objects "jsEngine": "jsc",
Sanya21’s answer worked for me. Since SDK 48 Expo uses Hermes as the JavaScript engine,
"jsEngine": "jsc"
sets it back to JavaScriptCore and does the trick with the debugger. Hopefully it’s only a temporary workaround.