Files
new-webpack-4-vscode/.vscode/launch.json
T
2022-03-20 12:19:19 +01:00

26 lines
820 B
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": "npm run server",
"name": "2. Start server (w. hot)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run production",
"name": "3. Build for production",
"request": "launch",
"type": "node-terminal"
},
]
}