有没有办法同时 运行 "tsc -watch" 和 "npm start",点击 VSCode 上的按钮/快捷方式?
Is there a way to run "tsc -watch" and "npm start" at the same time, with a click of a button/ shortcut on VSCode?
我是 node.js 和打字稿的新手,我想知道是否有任何方法可以通过单击 [=] 上的按钮或命令同时 运行 这两个命令19=]代码。
谢谢
您可以通过单击左侧显示的 "npm scripts" 选项卡(默认)来执行命令
如果你想通过单击执行多个命令,你必须使用类似 concurrently
的东西
打开你 package.json 并编辑脚本
"script" : {
"my-script": "concurrently \"tsc-watch\" \"npm start\""
}
我是 node.js 和打字稿的新手,我想知道是否有任何方法可以通过单击 [=] 上的按钮或命令同时 运行 这两个命令19=]代码。
谢谢
您可以通过单击左侧显示的 "npm scripts" 选项卡(默认)来执行命令
如果你想通过单击执行多个命令,你必须使用类似 concurrently
的东西打开你 package.json 并编辑脚本
"script" : {
"my-script": "concurrently \"tsc-watch\" \"npm start\""
}