I am a reccent deno user. Been using node for a long time, switched to deno and am very happy with it. It's really good
However, I have an issue.
Whenever I try to debug a deno file, the vscode debugger starts running for like half a second and then stops, and nothing happens. It doesnt freeze or anything, it just starts for a moment and stops.
I am using this as launch configuration
{ "version": "0.2.0", "configurations": [ { "name": "Deno1", "type": "node", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "deno", "outputCapture": "std", "runtimeArgs": ["run", "--inspect-brk", "-A", "${fileName}"], "port": 9229, } ] } I took it from this post
I should add that I was able to debug this file already, but one day it just started showing this issue i just described without (to my knowledge) any change on my part.
I am trying to debug this file
How can I fix this issue?