Skip to content

Instantly share code, notes, and snippets.

@rsyuzyov
Created August 28, 2025 05:46
Show Gist options
  • Save rsyuzyov/776283ef9d3d633019a1a8f649957ab1 to your computer and use it in GitHub Desktop.
Save rsyuzyov/776283ef9d3d633019a1a8f649957ab1 to your computer and use it in GitHub Desktop.
Конфиг отладки 1С в vscode (.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": "Отладка 1С (запуск)",
"type": "onec",
"request": "launch",
"platformPath": "${env:PROGRAMFILES}/1cv8",
"rootProject": "${workspaceFolder}",
"debugServerHost": "localhost",
"debugServerPort": 1550,
"infoBase": "1cvsc",
"autoAttachTypes": [
"ManagedClient",
"Server"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment