0

I am trying to debug a project on github codespace.

However, the node debugger does not stop at the breakpoints.

That's my vscode debug config file:

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "pwa-node",
            "request": "launch",
            "name": "Launch Program",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${file}"
        }
    ]
}

That the repo: https://github.com/viliusle/miniPaint/

Any suggestions how to debug the above repo?

Thx in advance!

Carol.Kar
  • 4,581
  • 36
  • 131
  • 264
  • 2
    What is your question? Are you asking about why the Codespaces/debugger isn't working, or how to fix the bug in the repository? Just asking for clarification. – Lakshya Raj Jul 19 '22 at 20:15
  • @LakshyaRaj I would like to debug the mentioned repository. However, the debugger in codespaces does not stop on the breakpoints. Thx for your reply! – Carol.Kar Jul 20 '22 at 04:12
  • In that case you probably want to include exactly what you're trying to debug ([mre]), and what the error currently *is*. Without that, we won't be able to know what we're trying to answer. I'm actually not an expert in debugging or Codespaces, just trying to figure out this question. An [edit] to your question with the required information would be helpful. – Lakshya Raj Jul 20 '22 at 16:24

0 Answers0