Skip to content

Instantly share code, notes, and snippets.

@Corvimae
Created September 26, 2018 15:55
Show Gist options
  • Save Corvimae/6809b1bda2bc3085cf47d35834fc4d54 to your computer and use it in GitHub Desktop.
Save Corvimae/6809b1bda2bc3085cf47d35834fc4d54 to your computer and use it in GitHub Desktop.
Vue + VSCode tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build"
},
{
"type": "shell",
"label": "watch",
"command": "npm run dev",
"args": [
"--",
"--watch"
],
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "watch-prod",
"command": "npm run build",
"args": [
"--",
"--watch"
],
"problemMatcher": [
"$tsc",
"$eslint-stylish"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment