Skip to content
Snippets Groups Projects

Debugging TypeScript applications in Visual Studio Code (vscode)

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Duy Minh Vo

    Always been a pain

    Edited
    launch.json 291 B
    {
      "version": "0.2.0",
      "configurations": [
          {
              "type": "node",
              "request": "launch",
              "name": "Launch via NPM",
              "runtimeExecutable": "npx",
              "runtimeArgs": [
                  "tsx"
              ],
              "program": "${file}",
          }
      ]
    }
    0% or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment