https://bugs.kde.org/show_bug.cgi?id=510041

--- Comment #3 from [email protected] ---
(In reply to Waqar Ahmed from comment #1)
> which debugger is it? Can you list exact steps to reproduce the issue?

1. Add the folliwing configuration to debuggers.json (Note that this is nix
language and will generate the correct json)

      node = {
        run = {
          request = ["${pkgs.vscode-js-debug}/bin/js-debug""\${#run.port}"];
          port = 0;
        };
        configurations = {
          "Node (Launch)".request = {
            type = "pwa-node";
            request = "launch";
            program = ''''${file}'';
            args = ''''${args|list}'';
            cwd = ''''${workdir}'';
            stopOnEntry = true;
            sourceMaps = true;
            protocol = "inspector";
            console = "integratedTerminal";
            enableDWARF = true;
            env = ''''${env|list}'';
          };
        };
      };
2. Select in the debug panel the Node configuration
3. Press the start debug
4. see it fail
5.see that the play button is now inactive

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to