tasks.json
561 Bytes
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"args": [
"run"
],
"tasks": [
{
"taskName": "build",
"args": ["build"],
"isBuildCommand": true,
"isWatching": false,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
},
{
"taskName": "coverage"
},
{
"taskName": "test",
"isTestCommand": true
}
]
}