cmake-intellisence/.vscode/launch.json

50 lines
1.5 KiB
JSON
Raw Normal View History

2022-08-19 16:13:03 +08: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
{
2022-09-03 11:03:41 +08:00
"version": "0.2.0",
"configurations": [
{
2022-11-10 17:25:49 +08:00
"name": "Launch Client",
2022-09-03 11:03:41 +08:00
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
2022-10-12 12:37:03 +08:00
"${workspaceFolder}/dist/**/*.js"
2022-09-03 11:03:41 +08:00
],
"preLaunchTask": "${defaultBuildTask}"
},
2022-10-12 12:37:03 +08:00
{
2022-11-10 17:25:49 +08:00
"name": "Attach to Server",
2022-10-12 12:37:03 +08:00
"type": "node",
"request": "attach",
"port": 6009,
"restart": true,
"outFiles": [
"${workspaceRoot}/dist/**/*.js"
]
},
2022-09-03 11:03:41 +08:00
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
2022-11-10 17:25:49 +08:00
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
2022-09-03 11:03:41 +08:00
]
2022-10-12 12:37:03 +08:00
}