Fix that gulp tasks also run on Windows

This commit is contained in:
Erich Gamma 2016-03-08 09:03:08 +01:00
parent a1f27a5eae
commit dddb9d4577

14
.vscode/tasks.json vendored
View file

@ -1,6 +1,14 @@
{
"version": "0.1.0",
"command": "./node_modules/.bin/gulp",
"windows": {
"command": ".\\node_modules\\.bin\\gulp"
},
"osx": {
"command": "./node_modules/.bin/gulp"
},
"linux": {
"command": "./node_modules/.bin/gulp"
},
"isShellCommand": true,
"tasks": [
{
@ -12,7 +20,9 @@
"isWatching": true,
"problemMatcher": {
"owner": "typescript",
"fileLocation": ["absolute"],
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^\\*\\*\\* Error: ([^(]+)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\): (.*)$",
"file": 1,