diff options
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 9a0a9afb4..8aa197fa5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,11 @@ "sourceMaps": true, "breakOnLoad": true, "url": "http://localhost:1050", - "webRoot": "${workspaceFolder}" + "webRoot": "${workspaceFolder}", + "skipFiles": [ + "${workspaceRoot}/node_modules/**/*.js", + "${workspaceRoot}/node_modules/**/*.ts", + ] }, { "type": "node", @@ -47,5 +51,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 |
