refactor: improve helper arguments validation
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
index 7cca9d16ce2cb3eb187c02d22df8fda68bfed584..ee5fd9846ed87ae8e9e672ebbe2008f042f4379d 100644 (file)
@@ -7,21 +7,10 @@
     {
       "type": "node",
       "request": "launch",
-      "name": "Debug Simulator via npm",
+      "name": "Debug Simulator Development Build via pnpm",
       "cwd": "${workspaceFolder}",
-      "preLaunchTask": "Build",
-      "runtimeExecutable": "npm",
-      "runtimeArgs": ["run-script", "start:debug"],
-      "skipFiles": ["<node_internals>/**"],
-      "stopOnEntry": true
-    },
-    {
-      "type": "node",
-      "request": "launch",
-      "name": "Debug Simulator Development Build via npm",
-      "cwd": "${workspaceFolder}",
-      "runtimeExecutable": "npm",
-      "runtimeArgs": ["run-script", "start:dev:debug"],
+      "runtimeExecutable": "pnpm",
+      "runtimeArgs": ["run", "start:dev:debug"],
       "skipFiles": ["<node_internals>/**"],
       "stopOnEntry": true
     },