Created
April 6, 2016 06:02
-
-
Save dmikey/cdea60ae2e44be1ac02cdd59f64824d8 to your computer and use it in GitHub Desktop.
vscode npm 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, | |
"tasks": [ | |
{ | |
"taskName": "run", | |
// Make this the default build command. | |
"isBuildCommand": true, | |
"args": ["build"], | |
// Show the output window only if unrecognized errors occur. | |
"showOutput": "silent" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment