You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vscode-sshfs/.vscode/tasks.json

85 lines
2.7 KiB

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Extension - Watch all",
"group": "build",
"dependsOn": [
"Extension - Watch",
"Extension WebView - Watch"
],
"problemMatcher": [],
"isBackground": true,
"runOptions": {
"runOn": "folderOpen"
}
},
{
"type": "npm",
"label": "Extension - Watch",
"script": "watch",
"group": "build",
"problemMatcher": {
"source": "webpack-ts-loader",
"fileLocation": "absolute",
"applyTo": "closedDocuments",
"background": {
"activeOnStart": false,
"beginsPattern": "^Compilation results$",
"endsPattern": "^End of compilation results$"
},
"pattern":[
{
"regexp": "^\\[TS\\] (.+) in (.+)\\((\\d+):(\\d+)\\):$",
"severity": 1,
"file": 2,
"line": 3,
"column": 4
},
{
"regexp": "^TS(\\d+): (.+)$",
"code": 1,
"message": 2
}
]
},
"isBackground": true
},
{
"type": "shell",
"label": "Extension WebView - Watch",
"command": "npm start",
"options": {
"cwd": "./webview"
},
"group": "build",
"problemMatcher": {
"source": "react-dev-utils",
"severity": "error",
"fileLocation": "absolute",
"applyTo": "closedDocuments",
"background": {
"activeOnStart": true,
"beginsPattern": "^Compiling...$",
"endsPattern": "Finished compiling"
},
"pattern":[
{
"regexp": "^(.+)$",
"file": 1
},
{
"regexp": "^\\((\\d+),(\\d+)\\): (.+)$",
"line": 1,
"column": 2,
"message": 3,
"loop": true
}
]
},
"isBackground": true
}
]
}