X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=f3ee906a97792bd1633cb675a79483f0bb2ba636;hb=48eab5902faccd2b14649e0fe4477778ec70ba96;hp=46a93bdf7dbbfbc47b31bfa5f2290b3696001695;hpb=d12554487c95fcb5ca074d532f654ccf6ac83770;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 46a93bdf..f3ee906a 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 Tatami NG Benchmark Debug", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "benchmark:tatami-ng:debug"], "skipFiles": ["/**"], "stopOnEntry": true }