build(deps-dev): apply updates
[poolifier.git] / .vscode / launch.json
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 {
8 "type": "node",
9 "request": "launch",
10 "name": "Launch Tests Debug",
11 "cwd": "${workspaceFolder}",
12 "runtimeExecutable": "pnpm",
13 "runtimeArgs": ["run", "test:debug"],
14 "skipFiles": ["<node_internals>/**"],
15 "stopOnEntry": true
16 },
17 {
18 "type": "node",
19 "request": "launch",
20 "name": "Launch Benchmark.js Benchmark Debug",
21 "cwd": "${workspaceFolder}",
22 "runtimeExecutable": "pnpm",
23 "runtimeArgs": ["run", "benchmark:benchmark.js:debug"],
24 "skipFiles": ["<node_internals>/**"],
25 "stopOnEntry": true
26 },
27 {
28 "type": "node",
29 "request": "launch",
30 "name": "Launch Tatami NG Benchmark Debug",
31 "cwd": "${workspaceFolder}",
32 "runtimeExecutable": "pnpm",
33 "runtimeArgs": ["run", "benchmark:tatami-ng:debug"],
34 "skipFiles": ["<node_internals>/**"],
35 "stopOnEntry": true
36 }
37 ]
38 }