Skip to content

Commit

Permalink
VSCode extension - Add launch.json for devs
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Jun 22, 2024
1 parent bd45935 commit c3270ce
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions typescript/vscode-extension/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,6 @@ yarn.lock
# thumbnail cache on Windows
Thumbs.db
*.vsix

# Exceptions
!.vscode/launch.json
34 changes: 34 additions & 0 deletions typescript/vscode-extension/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// 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}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}

0 comments on commit c3270ce

Please sign in to comment.