nvim-dap-vscode-js icon indicating copy to clipboard operation
nvim-dap-vscode-js copied to clipboard

nvim-dap adapter for vscode-js-debug

Results 42 nvim-dap-vscode-js issues
Sort by recently updated
recently updated
newest added

As can be seen in [vscode-js-debug/src/common/contributionUtils.ts](https://github.com/microsoft/vscode-js-debug/blob/2152210dc7c3933e2b4ef7c72d72cf2fef765760/src/common/contributionUtils.ts#L65-L81), the `"pwa-*"` debug types are not preferred. Also, as seen in https://github.com/microsoft/vscode-js-debug/blob/2152210dc7c3933e2b4ef7c72d72cf2fef765760/src/build/generate-contributions.ts#L1090-L1098 , vscode will generate a warning if non preferred debug types are...

I was just wondering if this project had any license.

I tried to use this extension with Mason, so I passed it the path from the registry ```lua local mason = require 'mason-registry' local path = mason.get_package('js-debug-adapter'):get_install_path() ``` However, when...

First of all. Thanks for the project. Secondly: Receiving this error when I try to start the debugger: The debugger works as well, but do not understand why it's trying...

I can't get this plugin to work. After calling `require('dap').continue()` I get the error `Couldn't connect to localhost:${port}: ECONNREFUSED`. Below is the minimal config that I'm using: Click to expand...

I can't seem to connect the debug adapter to my local running node service. My config looks like: ```lua config = function() local dap = require "dap" local attach_node =...

When I try to run this command :lua require'dap'.continue() with the config below I get a message: "Debug adapter disconnected" my js-dap.lua file ``` require("dap-vscode-js").setup({ -- node_path = "node", --...

I am trying to debug my typescript file. And using lunar-vim btw. and getting the following error: ### Error [dap-js] Error trying to launch js-debugger: EONENT: No such file or...

Hi. I've finally gotten debugging working (well, almost). It works the first time, however when I debug a node server and terminate, it doesn't close the server. Im using LazyVim...