1
0
Fork 0
spacetac/.vscode/tasks.json

25 lines
563 B
JSON
Raw Normal View History

2017-01-15 11:45:18 +00:00
{
"version": "0.1.0",
2018-03-06 23:52:52 +00:00
"command": ".venv/node/bin/npm",
2017-01-15 11:45:18 +00:00
"isShellCommand": true,
"args": [
"run",
"--silent"
],
"tasks": [
{
"taskName": "build",
"isBuildCommand": true,
"isTestCommand": false,
2017-02-24 00:34:31 +00:00
"showOutput": "never",
2017-01-15 11:45:18 +00:00
"problemMatcher": "$tsc"
},
{
"taskName": "test",
"isBuildCommand": false,
"isTestCommand": true,
"showOutput": "always",
2017-01-15 11:45:18 +00:00
"problemMatcher": "$tsc"
}
]
}