Skip to content

Commit

Permalink
Adds extension debugging config
Browse files Browse the repository at this point in the history
  • Loading branch information
adrijshikhar committed Apr 16, 2020
1 parent f8e84f2 commit 41a5c2b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ dist
# TernJS port file
.tern-port

.vscode
.vscode/settings.json
*.vsix
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// 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
{
"version": "0.2.0",
"configurations": [
{
"name": "DarkDev",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}

0 comments on commit 41a5c2b

Please sign in to comment.