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