gpt4 book ai didi

visual-studio-code - 如何同时运行多个 vscode 任务?

转载 作者:行者123 更新时间:2023-12-03 18:30:05 28 4
gpt4 key购买 nike

例如,同时运行一个 typescript watch 任务和一个 gulp 任务。 (不使用终端)

最佳答案

我用的是 tasks.json像这样同时运行两个监视任务:

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Watch all",
"dependsOn": [
"Watch package 'core'",
"Watch package 'ui'"
],
"dependsOrder": "parallel",
"group": "build",
"problemMatcher": [
"$tsc-watch"
],
"isBackground": true
},
{
"label": "Watch package 'core'",
"type": "typescript",
"tsconfig": "packages/core/tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build"
},
{
"label": "Watch package 'ui'",
"type": "typescript",
"tsconfig": "packages/ui/tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build"
}
]
}

当您在 vscode 中打开构建菜单时,您可以选择运行两个单独的监视任务或运行其他两个任务的“全部监视”任务。

我想你可以很容易地用你的 gulp 任务替换一个 watch 任务。

关于visual-studio-code - 如何同时运行多个 vscode 任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42923071/

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