refactor: cleanup priority queue code
[poolifier.git] / .vscode / launch.json
CommitLineData
660940b0
JB
1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
d1255448 8 "type": "node",
660940b0 9 "request": "launch",
877f0f39 10 "name": "Launch Tests Debug",
660940b0 11 "cwd": "${workspaceFolder}",
186b35b6
JB
12 "runtimeExecutable": "pnpm",
13 "runtimeArgs": ["run", "test:debug"],
c97c7edb 14 "skipFiles": ["<node_internals>/**"],
660940b0
JB
15 "stopOnEntry": true
16 },
0804b9b4
JB
17 {
18 "type": "node",
19 "request": "launch",
b5ca7c94 20 "name": "Launch Tatami NG Benchmark Debug",
0804b9b4
JB
21 "cwd": "${workspaceFolder}",
22 "runtimeExecutable": "pnpm",
98f60ddd 23 "runtimeArgs": ["run", "benchmark:tatami-ng:debug"],
c97c7edb 24 "skipFiles": ["<node_internals>/**"],
660940b0
JB
25 "stopOnEntry": true
26 }
27 ]
28}