diff options
Diffstat (limited to 'users/Profpatsch/.vscode/launch.json')
-rw-r--r-- | users/Profpatsch/.vscode/launch.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/users/Profpatsch/.vscode/launch.json b/users/Profpatsch/.vscode/launch.json index baa087d437d1..54f510e091ec 100644 --- a/users/Profpatsch/.vscode/launch.json +++ b/users/Profpatsch/.vscode/launch.json @@ -13,6 +13,32 @@ "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" + ] } ] } |