Created
December 24, 2016 12:50
-
-
Save javaeeeee/3599cd0cd175139e3cb231f9b3f0ae96 to your computer and use it in GitHub Desktop.
VS Code tasks.json file which allows to run npm start command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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