Browse Source

Updates to v2.0 task schema

main
Eric Amodio 7 years ago
parent
commit
28db0bf2f5
1 changed files with 14 additions and 11 deletions
  1. +14
    -11
      .vscode/tasks.json

+ 14
- 11
.vscode/tasks.json View File

@ -9,13 +9,18 @@
// A task runner that calls a custom npm script that compiles the extension. // A task runner that calls a custom npm script that compiles the extension.
{ {
"version": "2.0.0", "version": "2.0.0",
"showOutput": "silent",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"tasks": [ "tasks": [
{ {
"taskName": "compile",
"command": "npm run compile --silent",
"isBuildCommand": true,
"isShellCommand": true,
"label": "compile",
"type": "npm",
"script": "compile",
"group": "build",
"problemMatcher": [ "problemMatcher": [
"$tsc", "$tsc",
{ {
@ -25,19 +30,17 @@
] ]
}, },
{ {
"taskName": "lint",
"command": "npm run lint --silent",
"isShellCommand": true,
"type": "npm",
"script": "lint",
"problemMatcher": { "problemMatcher": {
"base": "$tslint5", "base": "$tslint5",
"fileLocation": "relative" "fileLocation": "relative"
} }
}, },
{ {
"taskName": "watch",
"command": "npm run watch --silent",
"type": "npm",
"script": "watch",
"isBackground": true, "isBackground": true,
"isShellCommand": true,
"problemMatcher": "$tsc-watch" "problemMatcher": "$tsc-watch"
} }
] ]

Loading…
Cancel
Save