X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=921886b80a6fe89f7f2b9ca7e27d41b85cff39a6;hb=e6d412e4ce0d836d2318cb83dcfba6b7b12fdf25;hp=c2c4c33f19bc39cdc7a5dc966f14967c8e0dea0a;hpb=c97c7edb14ea0699cd82bce5d0ffe50ae26af667;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index c2c4c33f..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:vscode"], + "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:vscode"], + "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 }