Bump @types/node from 18.8.2 to 18.8.3 in /src/ui/web (#215)
[e-mobility-charging-stations-simulator.git] / .vscode / launch.json
index 5c8aa82b4f96dcd045bf6d9fc96aa11a2422d5d1..d89584673667e4760be43992f61254975890d798 100644 (file)
@@ -5,34 +5,24 @@
   "version": "0.2.0",
   "configurations": [
     {
-      "type": "pwa-node",
+      "type": "node",
       "request": "launch",
       "name": "Debug Simulator via npm",
       "cwd": "${workspaceFolder}",
       "preLaunchTask": "Build",
       "runtimeExecutable": "npm",
-      "runtimeArgs": [
-        "run-script",
-        "start:debug"
-      ],
-      "skipFiles": [
-        "<node_internals>/**"
-      ],
+      "runtimeArgs": ["run-script", "start:debug"],
+      "skipFiles": ["<node_internals>/**"],
       "stopOnEntry": true
     },
     {
-      "type": "pwa-node",
+      "type": "node",
       "request": "launch",
       "name": "Debug Simulator Development Build via npm",
       "cwd": "${workspaceFolder}",
       "runtimeExecutable": "npm",
-      "runtimeArgs": [
-        "run-script",
-        "start:dev:debug"
-      ],
-      "skipFiles": [
-        "<node_internals>/**"
-      ],
+      "runtimeArgs": ["run-script", "start:dev:debug"],
+      "skipFiles": ["<node_internals>/**"],
       "stopOnEntry": true
     }
   ]