mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
// 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 Azure Data Studio install",
|
|
"type": "sqlopsExtensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "azuredatastudio",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceFolder}"
|
|
]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to Azure Data Studio",
|
|
"protocol": "inspector",
|
|
"port": 5870,
|
|
"restart": true,
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceRoot}/out/**/*.js"
|
|
],
|
|
"preLaunchTask": "",
|
|
"timeout": 25000
|
|
},
|
|
{
|
|
"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": 20000
|
|
}
|
|
]
|
|
}
|