Created
August 28, 2025 05:46
-
-
Save rsyuzyov/776283ef9d3d633019a1a8f649957ab1 to your computer and use it in GitHub Desktop.
Конфиг отладки 1С в vscode (.vscode/launch.json)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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