Skip to content

Instantly share code, notes, and snippets.

@noam-honig
Created March 22, 2021 17:28
Show Gist options
  • Save noam-honig/623898a6cd539d86113263d3c63260f0 to your computer and use it in GitHub Desktop.
Save noam-honig/623898a6cd539d86113263d3c63260f0 to your computer and use it in GitHub Desktop.
Vs Code Config to run dev-ng and dev-node together
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev-ng",
"problemMatcher": [
"$tsc-watch"
],
"label": "npm: dev-ng",
"detail": "Angular Cli Dev Server",
"isBackground": true,
"presentation": {
"group": "dev"
}
},
{
"type": "npm",
"script": "dev-node",
"problemMatcher": [
"$tsc-watch"
],
"label": "npm: dev-node",
"detail": "Node Dev Server",
"isBackground": true,
"presentation": {
"group": "dev"
}
},
{
"label": "dev",
"dependsOn": [
"npm: dev-ng",
"npm: dev-node"
],
"detail":"runs both dev-ng and dev-node",
"problemMatcher": [
],
"isBackground": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment