launch.json

{

    // 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": "node",    指定调试语言

          "request": "attach",    绑定

          "name": "debug",     指定调试工具名称

          "processId": "${command:PickProcess}",   绑定何进程

          "restart": true,

          "protocol": "inspector",

        }

    ]

}

vscode调试工具-launch.json

vscode调试工具-launch.json

相关文章:

  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-26
  • 2022-12-23
  • 2021-11-28
  • 2021-10-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案