json VSCode调试launch.json示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json VSCode调试launch.json示例相关的知识,希望对你有一定的参考价值。

{
  // Usare IntelliSense per informazioni sui possibili attributi.
  // Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
  // Per ulteriori informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "Hera Chrome Debug",
      "url": "https://localhost:3000",
      "sourceMaps": true,
      "trace": true,
      "webRoot":"${workspaceFolder}",
      "sourceMapPathOverrides": {
        "*": "${workspaceFolder}/app/*",
      },
      "port": 9222,
      "runtimeArgs": [
        "--remote-debugging-port=9222"
      ]
    }
  ]
}

以上是关于json VSCode调试launch.json示例的主要内容,如果未能解决你的问题,请参考以下文章

为啥 VSCode 调试器不能使用 C# 中的默认 launch.json 设置?

vscode go 调试 launch.json

VSCode Launch.json配置。

ubuntu下vscode调试c++怎么配置launch.json和task.json

ubuntu下vscode调试c++怎么配置launch.json和task.json

在具有活动 virtualenv 的 python 模块上使用 vscode 调试器,launch.json 中的“配置文件中的 python 路径无效”