Files
vscode/extensions/html-language-features/.vscode/launch.json
T
Martin AeschlimannandGitHub 0204b2d2a6 css/html: use built-in node test framework (#309625)
* css/html: use built-in node test framework

* fix tests and reporter
2026-04-14 11:36:31 +02:00

34 lines
735 B
JSON

{
"version": "0.2.0",
"compounds": [
{
"name": "Debug Extension and Language Server",
"configurations": ["Launch Extension", "Attach Language Server"]
}
],
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/client/out/**/*.js"]
},
{
"name": "Attach Language Server",
"type": "node",
"request": "attach",
"port": 6045,
"protocol": "inspector",
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/server/out/**/*.js"],
"restart": true
}
]
}