VS Code launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug iOS",
"cwd": "${workspaceFolder}",
"type": "reactnative",
"request": "launch",
"platform": "ios"
},
{
"name": "Attach to packager",
"cwd": "${workspaceFolder}",
"type": "reactnative",
"request": "attach"
}
]
}
VS Code's "DEBUG AND RUN" choosing either Debug iOS or Attach to Packager won't do anything.
When I go to Simulator "Debug", it opens a browser page http://localhost:8081/debugger-ui/ instead and I don't know how to step into breakpoints with that browser page.
↧
VS Code Debug won't find Simulator; Simulator Debug opens browser instead
↧