Home > database >  Error converting value "Firefox" to type 'Microsoft.VisualStudio.WebClient.Diagnostic
Error converting value "Firefox" to type 'Microsoft.VisualStudio.WebClient.Diagnostic

Time:01-07

I want to start Firefox instead Chrome for my Angular project. I have installed debug adapter from there Try to start firefox

How to fix this issue?

CodePudding user response:

VS2022 debug adaptor supports only "chrome, edge, node" options. [1]: https://i.stack.imgur.com/CqvIq.png

Example settings for chrome debugger :

    "type": "chrome",
    "request": "launch",
    "name": "launch Chrome debugger",
    "url": "https://localhost:3000",
    "webRoot": "${workspaceFolder}"      

More info : https://learn.microsoft.com/en-us/visualstudio/javascript/debug-nodejs?view=vs-2022

  • Related