How do I skip external code when debugging in VS Code

后端 未结 2 447
野的像风
野的像风 2020-11-29 06:55

When debugging in vscode I\'d like to make some \"blackboxing\" and do not enter into code I didn\'t write. How can I do this?

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 07:10

    this is my launch.json file (it works for me):

    {
        "version": "0.2.0",
        "configurations": [
            {
                "type": "edge",
                "request": "launch",
                "name": "Launch Edge against localhost",
                "url": "http://localhost:4200",
                "webRoot": "${workspaceFolder}",
                "skipFiles": [
                  "${workspaceFolder}/node_modules/**/*.js"
                ]
            }
        ]
    }
    

提交回复
热议问题