build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
index e8114e91ee9ddd1d6edd267ae445b675318045c0..4f200ec8e7924ad1ca3b3870a11d366175fbec76 100644 (file)
@@ -5,25 +5,25 @@
   "version": "0.2.0",
   "configurations": [
     {
-      "type": "pwa-node",
+      "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"],
+      "runtimeExecutable": "pnpm",
+      "runtimeArgs": ["run", "start:dev:debug"],
       "skipFiles": ["<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
+      "name": "Debug Simulator Unit Tests",
+      "type": "node",
+      "request": "attach",
+      "port": 9229,
+      "continueOnAttach": true,
+      "autoAttachChildProcesses": false,
+      "timeout": 30000,
+      "resolveSourceMapLocations": ["!**/node_modules/**"],
+      "skipFiles": ["<node_internals>/**"]
     }
   ]
 }