IDE_of_ICS/code/extensions/markdown-language-features/server/.vscode/launch.json

16 lines
293 B
JSON

{
"version": "0.1.0",
// List of configurations. Add new configurations or edit existing ones.
"configurations": [
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 7997,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
}
]
}