diff options
| author | soaos <soaos@soaos.dev> | 2026-01-27 23:07:40 -0500 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-01-27 23:07:40 -0500 |
| commit | 248f89c80eddf5f01cc78b9011d62a3c83801d1c (patch) | |
| tree | c99fb93881702415a4854753d311a50c06ea7741 /.vscode/launch.json | |
Initial Commit
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..8880465 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +// 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": "Run Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/out/**/*.js" + ], + "preLaunchTask": "${defaultBuildTask}" + } + ] +} |
