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:
parent
708c2645d1
commit
c0f75e1a17
1 changed files with 4 additions and 2 deletions
|
@ -15,13 +15,15 @@
|
||||||
"adapter": "JavaScript",
|
"adapter": "JavaScript",
|
||||||
"program": "$ZED_FILE",
|
"program": "$ZED_FILE",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"cwd": "$ZED_WORKTREE_ROOT"
|
"cwd": "$ZED_WORKTREE_ROOT",
|
||||||
|
"type": "pwa-node"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "JavaScript debug terminal",
|
"label": "JavaScript debug terminal",
|
||||||
"adapter": "JavaScript",
|
"adapter": "JavaScript",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"cwd": "$ZED_WORKTREE_ROOT",
|
"cwd": "$ZED_WORKTREE_ROOT",
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal",
|
||||||
|
"type": "pwa-node"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue