azure-pipelines-vscode/.vscode/launch.json

58 строки
1.9 KiB
JSON
Исходник Обычный вид История

2018-08-01 18:00:40 +03:00
// A launch configuration that compiles the extension and then opens it inside a new window
// 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": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
2018-08-01 18:00:40 +03:00
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2018-09-04 20:18:00 +03:00
"${workspaceRoot}/src/test/workspace/",
2018-08-01 18:00:40 +03:00
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
]
2018-09-06 22:06:58 +03:00
},
{
"name": "Extension Tests From Server",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"${workspaceRoot}/examples/",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/testfromserver"
],
"outFiles": [
"${workspaceFolder}/out/testfromserver/**/*.js"
]
},
{
"name": "Attach to Server",
"type": "node",
"request": "attach",
"port": 6009,
"restart": true,
"outFiles": ["${workspaceRoot}/node_modules/azure-pipelines-language-server/**/*.js"]
2018-08-01 18:00:40 +03:00
}
]
}