Commit 494fb34ff094797661fffe784af6c2eb734e1d62
1 parent
9c5eb799
Exists in
master
and in
35 other branches
added vscode tasks
Showing
1 changed file
with
26 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,26 @@ |
| 1 | +{ | |
| 2 | + "version": "0.1.0", | |
| 3 | + "command": "npm", | |
| 4 | + "isShellCommand": true, | |
| 5 | + "args": [ | |
| 6 | + "run" | |
| 7 | + ], | |
| 8 | + "tasks": [ | |
| 9 | + { | |
| 10 | + "taskName": "build", | |
| 11 | + "args": ["build"], | |
| 12 | + "isBuildCommand": true, | |
| 13 | + "isWatching": false, | |
| 14 | + "problemMatcher": [ | |
| 15 | + "$lessCompile", | |
| 16 | + "$tsc", | |
| 17 | + "$jshint" | |
| 18 | + ] | |
| 19 | + }, | |
| 20 | + { | |
| 21 | + "taskName": "test", | |
| 22 | + "args": ["test"], | |
| 23 | + "isTestCommand": true | |
| 24 | + } | |
| 25 | + ] | |
| 26 | +} | |
| 0 | 27 | \ No newline at end of file | ... | ... |