Getting below Error while debugging in VS Code for Chrome:
Cannot connect to runtime process, timeout after 10000 ms - (reason: Cannot connect ...
Already looked into the below thread: and followed the process: Debug & Run Angular2 Typescript with Visual Studio Code?
My launch.json :
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch localhost with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/hi",
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
]
}