GoTools/.vscode/launch.json

27 lines
695 B
JSON
Raw Normal View History

2023-08-06 01:23:45 +03:00
// A launch configuration that launches the extension inside a new window
2021-03-22 02:27:33 +03:00
// 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
2021-03-19 02:22:55 +03:00
{
2021-03-22 02:27:33 +03:00
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
2023-08-06 01:23:45 +03:00
]
2021-03-22 02:27:33 +03:00
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
2023-08-06 01:23:45 +03:00
"--extensionTestsPath=${workspaceFolder}/test/suite/index"
]
2021-03-22 02:27:33 +03:00
}
]
2021-03-19 02:22:55 +03:00
}