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:
parent
2342bfd06f
commit
97584cf0c4
1
.gitignore
vendored
1
.gitignore
vendored
@ -66,6 +66,7 @@ typings/
|
||||
*.iml
|
||||
*.sublime-*
|
||||
.vscode/*
|
||||
!.vscode/launch.json
|
||||
|
||||
# OSX
|
||||
.DS_Store
|
||||
|
38
.vscode/launch.json
vendored
Normal file
38
.vscode/launch.json
vendored
Normal 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",
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user