Minify production build
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
index 8c879c6e4f77d876ccfbf85511fcdd93db9dbf85..5c8aa82b4f96dcd045bf6d9fc96aa11a2422d5d1 100644 (file)
@@ -7,7 +7,7 @@
     {
       "type": "pwa-node",
       "request": "launch",
-      "name": "Debug Program via npm",
+      "name": "Debug Simulator via npm",
       "cwd": "${workspaceFolder}",
       "preLaunchTask": "Build",
       "runtimeExecutable": "npm",
         "<node_internals>/**"
       ],
       "stopOnEntry": true
+    },
+    {
+      "type": "pwa-node",
+      "request": "launch",
+      "name": "Debug Simulator Development Build via npm",
+      "cwd": "${workspaceFolder}",
+      "runtimeExecutable": "npm",
+      "runtimeArgs": [
+        "run-script",
+        "start:dev:debug"
+      ],
+      "skipFiles": [
+        "<node_internals>/**"
+      ],
+      "stopOnEntry": true
     }
   ]
 }