Full Stack Debugging
(~1 minute) From a single VSCode window you can run the entire project.
{
"folders": [
{
"path": "ui"
},
{
"path": "data-access"
}
],
"settings": {
"debug.internalConsoleOptions": "neverOpen"
},
"launch": {
"version": "0.2.0",
"compounds": [{
"name": "full-stack",
"configurations": [
{
"folder": "ui",
"name": "Launch Chrome against localhost"
},
{
"folder": "data-access",
"name": "Attach to Node Functions"
}
]
}],
}
}Last updated
Was this helpful?