deno options not available in vscode debugger options
latest vscode, latest deno, yes ive got the extension installed

launch.jsonlaunch.jsonlaunch.json"your_script.ts"{
"version": "0.2.0",
"configurations": [
{
"name": "Deno",
"type": "pwa-node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": ["run", "--allow-all", "your_script.ts"],
"outputCapture": "std"
}
]
}