vscode/.vscode/tasks.json

88 lines
1.6 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
}
}
},
2019-04-03 21:54:02 +00:00
{
"type": "npm",
"script": "strict-initialization-watch",
"label": "TS - Strict Initialization",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"problemMatcher": {
"base": "$tsc-watch",
"owner": "typescript-strict-initialization",
"applyTo": "allDocuments"
}
},
2016-01-14 16:53:55 +00:00
{
2017-06-27 19:44:31 +00:00
"type": "gulp",
"task": "tslint",
"label": "Run tslint",
"problemMatcher": [
2017-11-07 10:53:59 +00:00
"$tslint5"
]
},
{
2017-11-07 10:53:59 +00:00
"label": "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
{
2017-11-07 10:53:59 +00:00
"label": "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
]
}