X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=46a93bdf7dbbfbc47b31bfa5f2290b3696001695;hb=e1ffb94fcac39a7459c47edaa086a7729a1dec44;hp=8a86588aa11d31c6977020fed716ee643f5e7b2f;hpb=660940b0fcdbafb80d3c01684b668f55980bfa67;p=poolifier.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 8a86588a..46a93bdf 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,35 +5,25 @@ "version": "0.2.0", "configurations": [ { - "type": "pwa-node", + "type": "node", "request": "launch", "name": "Launch Test Debug", "cwd": "${workspaceFolder}", - "preLaunchTask": "Development build", + // "preLaunchTask": "Development build", "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "test:debug:vscode" - ], - "skipFiles": [ - "/**" - ], + "runtimeArgs": ["run-script", "test:debug"], + "skipFiles": ["/**"], "stopOnEntry": true }, { - "type": "pwa-node", + "type": "node", "request": "launch", "name": "Launch Benchmark Debug", "cwd": "${workspaceFolder}", - "preLaunchTask": "Development build", + // "preLaunchTask": "Development build", "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "benchmark:debug:vscode" - ], - "skipFiles": [ - "/**" - ], + "runtimeArgs": ["run-script", "benchmark:debug"], + "skipFiles": ["/**"], "stopOnEntry": true } ]