able-baker/.vscode/launch.json

22 lines
640 B
JSON
Raw Normal View History

2023-07-29 17:13:49 -04:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2024-04-23 12:44:22 -04:00
"name": "Host Process",
2023-07-29 17:13:49 -04:00
"request": "launch",
"type": "node",
"runtimeExecutable": "deno",
"runtimeArgs": ["task", "debug"],
"attachSimplePort": 9229
2024-04-23 12:44:22 -04:00
},
{
"name": "Subprocess",
"request": "attach",
"type": "node",
"port": 9230
2023-07-29 17:13:49 -04:00
}
]
}