diff options
| author | soaos <soaos@soaos.dev> | 2026-04-04 15:43:46 -0400 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-04-04 15:43:46 -0400 |
| commit | bf5e4797811adf728c1495f9e20f9c1c3db3586a (patch) | |
| tree | cf14bd54417eac9d69d9b3676ed2846d2fcaa26f /.vscode/launch.json | |
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}" + } + ] +} |