gpt4 book ai didi

visual-studio-code - 在 Visual Studio Code 中一次运行两个项目

转载 作者:行者123 更新时间:2023-12-04 01:53:52 25 4
gpt4 key购买 nike

我开发网络项目。服务器是用 TypeScript 编写的 node.js 应用程序。客户端也用 Typescript 编写。我需要两个能力:

  • 在不同的文件夹中使用不同的编译器选项编译不同的项目。
  • 同时调试两个项目。

  • 我怎样才能做到这一点?

    最佳答案

    请参阅我们关于多目标调试的文档:https://code.visualstudio.com/Docs/editor/debugging#_multitarget-debugging

    在您的 launch.json ,只需创建一个 compounds包含要调试的目标的部分

    {
    "version": "0.2.0",
    "configurations": [
    {
    "type": "node",
    "request": "launch",
    "name": "Server",
    "program": "${workspaceRoot}/server.js",
    "cwd": "${workspaceRoot}"
    },
    {
    "type": "node",
    "request": "launch",
    "name": "Client",
    "program": "${workspaceRoot}/client.js",
    "cwd": "${workspaceRoot}"
    }
    ],
    "compounds": [
    {
    "name": "Server/Client",
    "configurations": ["Server", "Client"]
    }
    ]
    }

    关于visual-studio-code - 在 Visual Studio Code 中一次运行两个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38529937/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com