X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=921886b80a6fe89f7f2b9ca7e27d41b85cff39a6;hb=773881ea2c1b9aa8cd9698cc3ccc1978609ad98f;hp=46a93bdf7dbbfbc47b31bfa5f2290b3696001695;hpb=d12554487c95fcb5ca074d532f654ccf6ac83770;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 46a93bdf..921886b8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,22 +7,30 @@ { "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": "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 }