Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created December 24, 2016 12:50
Show Gist options
  • Select an option

  • Save javaeeeee/3599cd0cd175139e3cb231f9b3f0ae96 to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/3599cd0cd175139e3cb231f9b3f0ae96 to your computer and use it in GitHub Desktop.
VS Code tasks.json file which allows to run npm start command
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName":"startServer",
"args": [
"start"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment