Skip to content

Commit

Permalink
Configured project tasks for VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeh Fernando authored and zeh committed Jan 24, 2017
1 parent 36a0991 commit eac7521
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "build",
"args": ["run", "build"]
},
{
"taskName": "watch",
"args": ["run", "watch"]
},
{
"taskName": "test",
"args": ["run", "test"]
},
{
"taskName": "test:watch",
"args": ["run", "test:watch"]
}
]
}

0 comments on commit eac7521

Please sign in to comment.