X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=.vscode%2Flaunch.json;h=c750ba521b44f23963d861d73e235c2343f01c66;hb=b537ee9c5e0688123d228f7b0d80bcba516f55a3;hp=8a86588aa11d31c6977020fed716ee643f5e7b2f;hpb=660940b0fcdbafb80d3c01684b668f55980bfa67;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 8a86588a..c750ba52 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,35 +5,23 @@ "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" - ], - "skipFiles": [ - "/**" - ], + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "test:debug"], + "skipFiles": ["/**"], "stopOnEntry": true }, { - "type": "pwa-node", + "type": "node", "request": "launch", - "name": "Launch Benchmark Debug", + "name": "Launch Tatami NG Benchmark Debug", "cwd": "${workspaceFolder}", - "preLaunchTask": "Development build", - "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "benchmark:debug:vscode" - ], - "skipFiles": [ - "/**" - ], + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "benchmark:tatami-ng:debug"], + "skipFiles": ["/**"], "stopOnEntry": true } ]