launch.json
Home
/
.vscode /
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm install",
"name": "1. Install NPM packages (first time only)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "node run-servers.js",
"name": "2. Start servers (w. hot)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run production",
"name": "3. Build for production",
"request": "launch",
"type": "node-terminal"
},
]
}