Commit | Line | Data |
---|---|---|
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", |
877f0f39 | 20 | "name": "Launch Benchmarks Debug", |
660940b0 | 21 | "cwd": "${workspaceFolder}", |
186b35b6 JB |
22 | "runtimeExecutable": "pnpm", |
23 | "runtimeArgs": ["run", "benchmark:debug"], | |
c97c7edb | 24 | "skipFiles": ["<node_internals>/**"], |
660940b0 JB |
25 | "stopOnEntry": true |
26 | } | |
27 | ] | |
28 | } |