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": [
{
"type": "node",
"request": "launch",
"name": "1. Install NPM packages (first time only)",
"program": "${workspaceFolder}/BuildScripts/install-npm-packages.js"
},
{
"type": "node",
"request": "launch",
"name": "2. Start server (w. hot)",
"program": "${workspaceFolder}/BuildScripts/start-webpack-dev-server.js"
},
{
"type": "node",
"request": "launch",
"name": "3. Build for production",
"program": "${workspaceFolder}/BuildScripts/output-production.js"
}
]
}