Skip to content

Instantly share code, notes, and snippets.

@FuriouZz
Created December 26, 2015 02:11
Show Gist options
  • Save FuriouZz/48265a0956853500b0da to your computer and use it in GitHub Desktop.
Save FuriouZz/48265a0956853500b0da to your computer and use it in GitHub Desktop.
VSCode tasks with npm scripts
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"args": [ "run" ],
"tasks": [
{
"taskName": "compile",
"isBuildCommand": false,
"showOutput": "always",
"isWatching": true
},
{
"taskName": "build",
"isBuildCommand": true,
"showOutput": "always",
"isWatching": true
},
{
"taskName": "start",
"isBuildCommand": false,
"showOutput": "always",
"isWatching": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment