tasks.json
531 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": "test",
"args": ["test"],
"isTestCommand": true
}
]
}