diff options
author | Connor Peet <connor@peet.io> | 2020-08-14 10:22:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:22:46 -0400 |
commit | fbee85b1ae497202b97f8de0ca48a4ea69751985 (patch) | |
tree | b557879ccf0980718446d51b7486e7afd9c75357 /docs/tools/debugger.md | |
parent | 27d896984726d12bdec1007bd998731f08dc86ff (diff) |
docs: update VS Code debugging options for 1.47 (#6767)
Diffstat (limited to 'docs/tools/debugger.md')
-rw-r--r-- | docs/tools/debugger.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tools/debugger.md b/docs/tools/debugger.md index 7f2c2378e..400d050de 100644 --- a/docs/tools/debugger.md +++ b/docs/tools/debugger.md @@ -93,12 +93,12 @@ config: "configurations": [ { "name": "Deno", - "type": "node", + "type": "pwa-node", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "deno", "runtimeArgs": ["run", "--inspect-brk", "-A", "${file}"], - "port": 9229 + "attachSimplePort": 9229 } ] } |