vscode/.vscode/tasks.json

73 lines
1.3 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"version": "2.0.0",
2015-11-13 13:39:38 +00:00
"tasks": [
{
2017-06-27 19:44:31 +00:00
"type": "npm",
"script": "watch",
"label": "Build VS Code",
"group": "build",
2017-02-08 08:05:17 +00:00
"isBackground": true,
2017-06-27 19:44:31 +00:00
"presentation": {
"reveal": "never"
},
2015-11-13 13:39:38 +00:00
"problemMatcher": {
"owner": "typescript",
"applyTo": "closedDocuments",
"fileLocation": [
"absolute"
],
2015-11-13 13:39:38 +00:00
"pattern": {
"regexp": "Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
2015-11-13 13:39:38 +00:00
"file": 1,
"location": 2,
"message": 3
},
"background": {
"beginsPattern": "Starting compilation",
"endsPattern": "Finished compilation"
2015-11-13 13:39:38 +00:00
}
}
},
2016-01-14 16:53:55 +00:00
{
2017-06-27 19:44:31 +00:00
"type": "gulp",
"task": "tslint",
"label": "Run tslint",
"problemMatcher": [
"$tslint4"
]
},
{
"taskName": "Run tests",
"type": "shell",
"command": "./scripts/test.sh",
"windows": {
"command": ".\\scripts\\test.bat"
},
"group": "test",
2017-06-22 15:03:52 +00:00
"presentation": {
"echo": true,
"reveal": "always"
2016-01-14 16:53:55 +00:00
}
},
2015-11-13 13:39:38 +00:00
{
"taskName": "Run Dev",
"type": "shell",
"command": "./scripts/code.sh",
"windows": {
"command": ".\\scripts\\code.bat"
},
"problemMatcher": []
2017-02-15 10:58:33 +00:00
},
{
2017-06-27 19:44:31 +00:00
"type": "gulp",
"task": "electron",
"label": "Download electron"
},
{
"type": "gulp",
"task": "hygiene",
"problemMatcher": []
2015-11-13 13:39:38 +00:00
}
]
}