X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=921886b80a6fe89f7f2b9ca7e27d41b85cff39a6;hb=4c0150d9e2dd35dad0a3db431b751e160b4de368;hp=f62ecf671b713103fd2c20fe565b3487f2a1a804;hpb=f41629749a66b8e07d8f2fd6c5616c2abc625b35;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index f62ecf67..921886b8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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": ["/**"], "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": ["/**"], + "stopOnEntry": true + }, + { + "type": "node", + "request": "launch", + "name": "Launch Mitata Benchmark Debug", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "benchmark:mitata:debug"], "skipFiles": ["/**"], "stopOnEntry": true }