Here is my launch.json configuration on my visual studio code :
{
"version": "0.2.0",
"configurations": [
{
"name": "Deno",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/v1/api-client",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect-brk",
"-A",
"--unstable",
"index.ts"
],
"port": 9229
}
]
}
the path is accurate & name file is right.
Here is the debug console :

when i am tried to add breakpoint , its always outbound.. normally before update deno its working normal.

Try "debug.javascript.usePreview": false,, the answer depends on a few things and is hidden in here https://github.com/denoland/vscode_deno/issues/12
Most helpful comment
Try
"debug.javascript.usePreview": false,, the answer depends on a few things and is hidden in here https://github.com/denoland/vscode_deno/issues/12