xref: /plugin/chordsheets/.vscode/launch.json (revision edb40cce45f71df5e4513ca4fbd359a2c19cb8a9)
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": "Luanch chrome",
11            "program": "${workspaceFolder}/js\\highlighter.js"
12        },
13        {
14            "name": "Launch Firefox",
15            "type": "firefox",
16            "request": "launch",
17            "reAttach": true,
18            "file": "${workspaceFolder}/test.html"
19        }
20    ]
21}