58 строки
1.9 KiB
JSON
58 строки
1.9 KiB
JSON
// 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"
|
|
]
|
|
},
|
|
{
|
|
"name": "Extension Tests",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"${workspaceRoot}/src/test/workspace/",
|
|
"--extensionDevelopmentPath=${workspaceFolder}",
|
|
"--extensionTestsPath=${workspaceFolder}/out/test"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceFolder}/out/test/**/*.js"
|
|
]
|
|
},
|
|
{
|
|
"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"]
|
|
}
|
|
]
|
|
}
|