Last active
January 23, 2023 15:51
-
-
Save DairoCantillo/263a22141eaa05b7fa749457d92578a2 to your computer and use it in GitHub Desktop.
config debug
This file contains 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": "1.0.0", | |
"configurations": [ | |
{ | |
"name": "Start App", | |
"runtimeArgs": ["start"], | |
"env": { | |
"BROWSER": "none" | |
}, | |
"request": "launch", | |
"runtimeExecutable": "npm", | |
"type": "node", | |
}, | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Run Chrome", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}" | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "Debug App", | |
"configurations": ["Start App", "Run Chrome"], | |
"stopAll": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment