// A launch configuration that launches the extension inside a new window
// 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

// To debug the extension:
// 1. please install the "Azure Data Studio Debug" extension into VSCode
// 2. Ensure azuredatastudio is added to your path:
//    - open Azure Data Studio
//    - run the command "Install 'azuredatastudio' command in PATH"
{
    "version": "0.2.0",
    "configurations": [

        {
            "name": "Debug in AzureDataStudio install",
            "type": "sqlopsExtensionHost",
            "request": "launch",
            "runtimeExecutable": "azuredatastudio",
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}"
            ],
            "timeout": 30000
        },
        {
            "type": "node",
            "request": "attach",
            "name": "Attach to Azure Data Studio",
            "protocol": "inspector",
            "port": 5870,
            "restart": true,
            "sourceMaps": true,
            "outFiles": [
                "${workspaceRoot}/out/**/*.js"
            ],
            "preLaunchTask": "",
            "timeout": 30000
        },
        {
            "name": "Debug in enlistment",
            "type": "sqlopsExtensionHost",
            "request": "launch",
            "windows": {
                "runtimeExecutable": "${workspaceFolder}/../../scripts/sql.bat"
            },
            "osx": {
                "runtimeExecutable": "${workspaceFolder}/../../scripts/sql.sh"
            },
            "linux": {
                "runtimeExecutable": "${workspaceFolder}/../../scripts/sql.sh"
            },
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}"
            ],
            "timeout": 30000
        }
    ]
}
