mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-17 04:15:47 +01:00
* css/html: use built-in node test framework * fix tests and reporter
34 lines
735 B
JSON
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
|
|
}
|
|
]
|
|
}
|