refactor(benchmark): finish migration to tatami-ng
[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 },
17 {
d1255448 18 "type": "node",
660940b0 19 "request": "launch",
0804b9b4 20 "name": "Launch Benchmark.js Benchmark Debug",
660940b0 21 "cwd": "${workspaceFolder}",
186b35b6 22 "runtimeExecutable": "pnpm",
0804b9b4
JB
23 "runtimeArgs": ["run", "benchmark:benchmark.js:debug"],
24 "skipFiles": ["<node_internals>/**"],
25 "stopOnEntry": true
26 },
27 {
28 "type": "node",
29 "request": "launch",
b5ca7c94 30 "name": "Launch Tatami NG Benchmark Debug",
0804b9b4
JB
31 "cwd": "${workspaceFolder}",
32 "runtimeExecutable": "pnpm",
98f60ddd 33 "runtimeArgs": ["run", "benchmark:tatami-ng:debug"],
c97c7edb 34 "skipFiles": ["<node_internals>/**"],
660940b0
JB
35 "stopOnEntry": true
36 }
37 ]
38}