Skip to content

Commit

Permalink
Tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed May 8, 2018
1 parent e4ae53f commit 4c4241f
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
{
"version": "0.1.0",
"command": "npm",
"windows": {
"command": "npm.cmd"
},
"args": [
"run"
],
"version": "2.0.0",
"problemMatcher": [],
"tasks": [
{
"taskName": "test",
"isTestCommand": true
"type": "npm",
"script": "build",
"problemMatcher":"$tsc"
},
{
"taskName": "build",
"isBuildCommand": true
"type": "npm",
"script": "build:debuggee:cpp",
"problemMatcher": "$gcc"
},
{
"taskName": "build:debuggee:cpp"
"type": "npm",
"script": "build:debuggee:rust",
"problemMatcher": "$rustc"
},
{
"taskName": "build:debuggee:rust"
},
{
"taskName": "watch"
"label": "delay",
"type": "shell",
"command": "sleep 1",
"problemMatcher": []
}
]
}

0 comments on commit 4c4241f

Please sign in to comment.