.vscode/launch.json

Summary

Maintainability
Test Coverage
{
  // 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",
      "runtimeVersion": "18",
      "request": "launch",
      "name": "Debug Express App",
      "program": "${workspaceFolder}/node_modules/webpack/bin/webpack.js",
      "args": [
        "--watch", "--progress", "--env" , "config='server'"
      ],
      "env" : { "NODE_ENV" : "development" },
      "skipFiles": [
        "${workspaceFolder}/node_modules/**/*",
      ]
    }
  ]
}