refactor(benchmark): finish migration to tatami-ng
[poolifier.git] / .vscode / launch.json
index f62ecf671b713103fd2c20fe565b3487f2a1a804..f3ee906a97792bd1633cb675a79483f0bb2ba636 100644 (file)
@@ -5,24 +5,32 @@
   "version": "0.2.0",
   "configurations": [
     {
-      "type": "pwa-node",
+      "type": "node",
       "request": "launch",
-      "name": "Launch Test Debug",
+      "name": "Launch Tests Debug",
       "cwd": "${workspaceFolder}",
-      // "preLaunchTask": "Development build",
-      "runtimeExecutable": "npm",
-      "runtimeArgs": ["run-script", "test:debug"],
+      "runtimeExecutable": "pnpm",
+      "runtimeArgs": ["run", "test:debug"],
       "skipFiles": ["<node_internals>/**"],
       "stopOnEntry": true
     },
     {
-      "type": "pwa-node",
+      "type": "node",
       "request": "launch",
-      "name": "Launch Benchmark Debug",
+      "name": "Launch Benchmark.js Benchmark Debug",
       "cwd": "${workspaceFolder}",
-      // "preLaunchTask": "Development build",
-      "runtimeExecutable": "npm",
-      "runtimeArgs": ["run-script", "benchmark:debug"],
+      "runtimeExecutable": "pnpm",
+      "runtimeArgs": ["run", "benchmark:benchmark.js:debug"],
+      "skipFiles": ["<node_internals>/**"],
+      "stopOnEntry": true
+    },
+    {
+      "type": "node",
+      "request": "launch",
+      "name": "Launch Tatami NG Benchmark Debug",
+      "cwd": "${workspaceFolder}",
+      "runtimeExecutable": "pnpm",
+      "runtimeArgs": ["run", "benchmark:tatami-ng:debug"],
       "skipFiles": ["<node_internals>/**"],
       "stopOnEntry": true
     }