0

Is there a way to enable "Just My Code" on VSCode when I'm debugging a Go app?

Leonardo
  • 10,737
  • 10
  • 62
  • 155

1 Answers1

0

Have you tried adding a config in your launch.json?

"configurations": [
        {
           .... # existing config
        },
        {
            "name": "Debug Go App",
            "type": "go",
            "request": "launch",
            "justMyCode": true,
        }
    ]

Refs:

rishimaharaj
  • 1,644
  • 2
  • 19
  • 34