summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 07508f6fcd30bc76a851c86e1311bc546b5d6215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/plugin_loader/main.py",
            "preLaunchTask": "Stop Service",
            "console": "integratedTerminal",
            "justMyCode": true
        }
    ]
}