1
0
Fork 0
spacetac/.vscode/tasks.json
2017-01-15 12:45:18 +01:00

25 lines
551 B
JSON

{
"version": "0.1.0",
"command": "./npm",
"isShellCommand": true,
"args": [
"run",
"--silent"
],
"tasks": [
{
"taskName": "build",
"isBuildCommand": true,
"isTestCommand": false,
"showOutput": "always",
"problemMatcher": "$tsc"
},
{
"taskName": "test",
"isBuildCommand": false,
"isTestCommand": true,
"showOutput": "always",
"problemMatcher": "$tsc"
}
]
}