1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 16:11:13 -05:00

docs: update VS Code debugging options for 1.47 (#6767)

This commit is contained in:
Connor Peet 2020-08-14 10:22:46 -07:00 committed by GitHub
parent 27d8969847
commit fbee85b1ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}
]
}