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 | { | |
8 | "type": "pwa-node", | |
9 | "request": "launch", | |
10 | "name": "Launch Test Debug", | |
11 | "cwd": "${workspaceFolder}", | |
f4162974 | 12 | // "preLaunchTask": "Development build", |
660940b0 | 13 | "runtimeExecutable": "npm", |
f4162974 | 14 | "runtimeArgs": ["run-script", "test:debug"], |
c97c7edb | 15 | "skipFiles": ["<node_internals>/**"], |
660940b0 JB |
16 | "stopOnEntry": true |
17 | }, | |
18 | { | |
19 | "type": "pwa-node", | |
20 | "request": "launch", | |
21 | "name": "Launch Benchmark Debug", | |
22 | "cwd": "${workspaceFolder}", | |
f4162974 | 23 | // "preLaunchTask": "Development build", |
660940b0 | 24 | "runtimeExecutable": "npm", |
f4162974 | 25 | "runtimeArgs": ["run-script", "benchmark:debug"], |
c97c7edb | 26 | "skipFiles": ["<node_internals>/**"], |
660940b0 JB |
27 | "stopOnEntry": true |
28 | } | |
29 | ] | |
30 | } |