Debugging React in VS Code
launch.json
{
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: start",
"request": "launch",
"command": "yarn start",
"cwd": "${workspaceFolder}"
}
]
}
{
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: start",
"request": "launch",
"command": "yarn start",
"cwd": "${workspaceFolder}"
}
]
}