2

我们的团队在一个 Angular 项目中工作,使用可视化代码作为编辑器。每个团队成员都有通过公共 git 存储库连接的项目的单独副本(同一计算机不同的文件夹)。我们使用 chrome 的调试器调试 Angular 代码。所有成员都使用远程多用户登录在同一个工作站上工作。但一次只有一个人可以使用调试器。

我按照以下教程并在 launch.json 文件中完成了必要的配置

https://briandesousa1.wordpress.com/2018/05/12/using-a-chrome-developer-profile-with-visual-studio-code-debugger/

我的 launch.json 文件如下所示

 "configurations": [
             
        {
          "type": "chrome",
          "request": "launch",
          "name": "Launch Chrome",
          "url": "http://localhost:4207",
          "webRoot": "${workspaceFolder}/src",
          "userDataDir": true,
          "runtimeArgs": [
            "--remote-debugging-port=9222",
            " --profile-directory=Profile 2"
          ]
        }
        ]
4

0 回答 0