1
我們在多個項目打字稿工作使用vscode,我們不知道什麼最好用與他們合作,現在我們已經配置了這樣的tasks.json:如何正確使用打字稿項目的工作
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "./node_modules/.bin/tsc",
"windows": {
"command": "\"./node_modules/.bin/tsc\""
},
"isShellCommand": true,
"args": ["-w", "-p", "."],
"showOutput": "always",
"problemMatcher": "$tsc-watch"
}
但是做這種方式,我們有cmd+shift+b
我們每次打開一個項目的時間來啓動任務。
有沒有一種方法能有這個自動啓動?
它不必使用task.json
也可以是別的東西。