2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"version": "0.1.0",
|
2016-03-08 16:03:08 +08:00
|
|
|
"windows": {
|
|
|
|
"command": ".\\node_modules\\.bin\\gulp"
|
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"command": "./node_modules/.bin/gulp"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"command": "./node_modules/.bin/gulp"
|
|
|
|
},
|
2015-11-13 21:39:38 +08:00
|
|
|
"isShellCommand": true,
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"taskName": "watch",
|
|
|
|
"args": [
|
|
|
|
"--no-color"
|
|
|
|
],
|
|
|
|
"isBuildCommand": true,
|
|
|
|
"isWatching": true,
|
|
|
|
"problemMatcher": {
|
|
|
|
"owner": "typescript",
|
2016-06-08 21:15:16 +08:00
|
|
|
"applyTo": "closedDocuments",
|
2016-03-08 16:03:08 +08:00
|
|
|
"fileLocation": [
|
|
|
|
"absolute"
|
|
|
|
],
|
2015-11-13 21:39:38 +08:00
|
|
|
"pattern": {
|
2016-07-12 17:47:17 +08:00
|
|
|
"regexp": "^\\*\\*\\* Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
|
2015-11-13 21:39:38 +08:00
|
|
|
"file": 1,
|
|
|
|
"location": 2,
|
|
|
|
"message": 3
|
|
|
|
},
|
|
|
|
"watching": {
|
2016-07-12 17:47:17 +08:00
|
|
|
"beginsPattern": "^\\*\\*\\* Starting\\.\\.\\.$",
|
|
|
|
"endsPattern": "^\\*\\*\\* Finished"
|
2015-11-13 21:39:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-01-15 00:53:55 +08:00
|
|
|
{
|
|
|
|
"taskName": "tslint",
|
|
|
|
"args": [],
|
|
|
|
"problemMatcher": {
|
|
|
|
"owner": "tslint",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceRoot}"
|
|
|
|
],
|
|
|
|
"severity": "warning",
|
|
|
|
"pattern": {
|
|
|
|
"regexp": "^\\[tslint\\] (.*):(\\d+):(\\d+):\\s+(.*)$",
|
|
|
|
"file": 1,
|
|
|
|
"line": 2,
|
|
|
|
"column": 3,
|
|
|
|
"message": 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"taskName": "test",
|
|
|
|
"args": [
|
|
|
|
"--no-color"
|
|
|
|
],
|
|
|
|
"showOutput": "always",
|
|
|
|
"isTestCommand": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|