aqua-vscode/.vscode/launch.json

16 lines
514 B
JSON
Raw Normal View History

2021-05-20 19:05:53 +03:00
// A launch configuration that launches the extension 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-05-17 15:06:52 +03:00
"version": "0.2.0",
2021-05-20 19:05:53 +03:00
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
2022-05-17 15:06:52 +03:00
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
2021-05-20 19:05:53 +03:00
}
]
2022-05-17 15:06:52 +03:00
}