vscode/.vscode/tasks.json

74 lines
1.3 KiB
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"version": "0.1.0",
"windows": {
"command": ".\\node_modules\\.bin\\gulp"
},
"osx": {
"command": "./node_modules/.bin/gulp"
},
"linux": {
"command": "./node_modules/.bin/gulp"
},
2015-11-13 13:39:38 +00:00
"isShellCommand": true,
"tasks": [
{
"taskName": "watch",
"args": [
"--no-color"
],
"isBuildCommand": true,
2017-02-08 08:05:17 +00:00
"isBackground": true,
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
},
"watching": {
"beginsPattern": "Starting compilation",
"endsPattern": "Finished compilation"
2015-11-13 13:39:38 +00:00
}
}
},
2016-01-14 16:53:55 +00:00
{
"taskName": "tslint",
"args": [],
"problemMatcher": {
"owner": "tslint",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"severity": "warning",
"pattern": {
2017-02-15 10:58:33 +00:00
"regexp": "(.*)\\[(\\d+),\\s(\\d+)\\]:\\s(.*)$", // (.*)\[(\d+), (\d+)\]: (.*)
2016-01-14 16:53:55 +00:00
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
}
},
2015-11-13 13:39:38 +00:00
{
"taskName": "test",
"args": [
"--no-color"
],
"showOutput": "always",
"isTestCommand": true
2017-02-15 10:58:33 +00:00
},
{
"taskName": "electron",
"args": [
"--no-color"
],
"showOutput": "never"
2015-11-13 13:39:38 +00:00
}
]
}