我正在使用我的Typescript項目的Ubuntu中的Visual Studio代碼。我想知道是否有可能執行某種'clean
'任務。 這裏是我的tasks.json
視覺工作室代碼清潔任務
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"tasks": [
{
"taskName": "tsc",
"command": "tsc",
"isShellCommand": true,
"isBackground": true,
"problemMatcher": "$tsc"
},
{
"taskName": "clean",
"linux": {
"command": "rm",
"args": [
"./src/*.js"
],
"isShellCommand": true
},
"isShellCommand": true,
"isBackground": true
}
]
}
這是我的項目結構。
執行task clean
說,有沒有這樣的文件或目錄,而執行'pwd'
代替rm
說,我在我的項目的根目錄。 任何建議如何構建系統的工作?也許在VS Code中有一些特殊的env變量語法?