
Release Notes: - Debugger: Fix built-in JavaScript debug tasks were not working due missing `type` field value
29 lines
698 B
JSON
29 lines
698 B
JSON
// Some example tasks for common languages.
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Debug active Python file",
|
|
"adapter": "Debugpy",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT"
|
|
},
|
|
{
|
|
"label": "Debug active JavaScript file",
|
|
"adapter": "JavaScript",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
"type": "pwa-node"
|
|
},
|
|
{
|
|
"label": "JavaScript debug terminal",
|
|
"adapter": "JavaScript",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
"console": "integratedTerminal",
|
|
"type": "pwa-node"
|
|
}
|
|
]
|