Vscode_deno: --inspect-brk Always get Outbound Breakpoint Result

Created on 25 Jul 2020  路  1Comment  路  Source: denoland/vscode_deno

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 :
image

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

bug

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

>All comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

elazutkin-dynata picture elazutkin-dynata  路  8Comments

chenguzhen87 picture chenguzhen87  路  5Comments

Ragzouken picture Ragzouken  路  5Comments

dd-pardal picture dd-pardal  路  10Comments

danilosampaio picture danilosampaio  路  4Comments