about summary refs log tree commit diff
path: root/users/Profpatsch/.vscode/launch.json
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "node: Attach to running process",
            "port": 9229,
            "request": "attach",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "type": "node"
        },
        {
            "name": "run declib",
            "type": "node",
            "cwd": "${workspaceFolder}/declib",
            "request": "launch",
            "runtimeExecutable": "ninja",
            "runtimeArgs": [
                "run",
            ],
        },
        {
            "type": "node",
            "name": "Run tap-bpm",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "request": "launch",
            "program": "${workspaceFolder}/lyric/dist/index.js",
            "preLaunchTask": "ninja build lyric",
            "outFiles": [
                "${workspaceFolder}/lyric/dist/**/*.js"
            ],
            "args": [
                "tap-bpm"
            ]
        },
        {
            "preLaunchTask": "npm build lyric extension",
            "name": "Launch lyric vscode Extension",
            "type": "extensionHost",
            "request": "launch",
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}/lyric/extension",
                "${workspaceFolder}/lyric/extension"
            ]
        }
    ]
}