vscode: Make the build:dev script a npm task.
[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 {
8 "type": "pwa-node",
9 "request": "launch",
10 "name": "Launch Test Debug",
11 "cwd": "${workspaceFolder}",
12 "preLaunchTask": "Development build",
13 "runtimeExecutable": "npm",
0ec231a1
JB
14 "runtimeArgs": ["run-script", "test:debug:vscode"],
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}",
23 "preLaunchTask": "Development build",
24 "runtimeExecutable": "npm",
0ec231a1
JB
25 "runtimeArgs": ["run-script", "benchmark:debug:vscode"],
26 "skipFiles": ["<node_internals>/**"],
660940b0
JB
27 "stopOnEntry": true
28 }
29 ]
30}