Created
March 22, 2021 17:28
-
-
Save noam-honig/623898a6cd539d86113263d3c63260f0 to your computer and use it in GitHub Desktop.
Vs Code Config to run dev-ng and dev-node together
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": "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