{
"version": "0.2.0",
"configurations": [
{
"name": "Launch NWJS 1",
"type": "nwjs",
"request": "launch",
"nwjsVersion": "any",
"runtimeExecutable": "/opt/nw/nw",
"webRoot": "${workspaceRoot}",
},
{
"name": "Launch NWJS 2",
"type": "nwjs",
"request": "launch",
"nwjsVersion": "any",
"port": 9223,
"webRoot": "${workspaceRoot}",
"runtimeExecutable": "/opt/nw/nw",
},
{
"name": "Launch NWJS 3",
"type": "nwjs",
"request": "launch",
"nwjsVersion": "any",
"runtimeExecutable": "/opt/nw/nw",
"runtimeArgs": [
"${workspaceRoot}/build",
"--remote-debugging-port=9222"
],
"webRoot": "${workspaceRoot}",
"sourceMaps": true,
"port": 9222
}
]
}
Hi!
Im try to debug with this configurations, but none works:
I get this error:
Thanks in advance!