debugger: Fix built-in JavaScript debug tasks were not working due missing type field value (#34894)

Release Notes:

- Debugger: Fix built-in JavaScript debug tasks were not working due
missing `type` field value
This commit is contained in:
Remco Smits 2025-07-22 21:39:52 +02:00 committed by GitHub
parent 708c2645d1
commit c0f75e1a17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,13 +15,15 @@
"adapter": "JavaScript",
"program": "$ZED_FILE",
"request": "launch",
"cwd": "$ZED_WORKTREE_ROOT"
"cwd": "$ZED_WORKTREE_ROOT",
"type": "pwa-node"
},
{
"label": "JavaScript debug terminal",
"adapter": "JavaScript",
"request": "launch",
"cwd": "$ZED_WORKTREE_ROOT",
"console": "integratedTerminal"
"console": "integratedTerminal",
"type": "pwa-node"
}
]