3
我開發web項目。服務器是用TypeScript編寫的node.js應用程序。客戶也寫在Typescript。我需要兩種能力:在Visual Studio代碼中同時運行兩個項目
- 在不同的文件夾中編譯不同的編譯器選項的項目。
- 可以同時調試兩個項目。
我該怎麼做?
我開發web項目。服務器是用TypeScript編寫的node.js應用程序。客戶也寫在Typescript。我需要兩種能力:在Visual Studio代碼中同時運行兩個項目
我該怎麼做?
請參閱我們的文檔的多目標調試: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"]
}
]
}
打開兩個VSCode實例的目標? –
WebStorm和Visual Studio可以在一個實例中調試多個項目 – AndyGrom