Added .vscode/launch.json to git

Rather than sending each other JSON snippets in slack, we can build shared
configurations for the vscode debugger.
This commit is contained in:
Fabien "egg" O'Carroll 2023-05-02 07:28:36 -04:00
parent 2342bfd06f
commit 97584cf0c4
2 changed files with 39 additions and 0 deletions

1
.gitignore vendored
View File

@ -66,6 +66,7 @@ typings/
*.iml
*.sublime-*
.vscode/*
!.vscode/launch.json
# OSX
.DS_Store

38
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,38 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Full Dev",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/.github/dev.js",
"args": [
"--all"
],
"autoAttachChildProcesses": true,
"outputCapture": "std",
"console": "integratedTerminal",
},
{
"type": "node",
"request": "launch",
"name": "Full Offline Dev",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/.github/dev.js",
"args": [
"--all --offline"
],
"autoAttachChildProcesses": true,
"outputCapture": "std",
"console": "integratedTerminal",
}
]
}