diff options
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 04dbfecc3..074f9ddf0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,8 +10,8 @@ "name": "Launch Chrome against localhost", "sourceMaps": true, "breakOnLoad": true, - "url": "http://localhost:1234", - "webRoot": "${workspaceFolder}" + "url": "http://localhost:1050", + "webRoot": "${workspaceFolder}", }, { "type": "node", @@ -47,5 +47,15 @@ "internalConsoleOptions": "openOnSessionStart", "protocol": "inspector" }, + { + "type": "node", + "request": "launch", + "name": "Launch via NPM", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "start" + ], + "port": 9229 + } ] }
\ No newline at end of file |
