diff --git a/.gitignore b/.gitignore index 7a6ed9d245..c82c66ed44 100644 --- a/.gitignore +++ b/.gitignore @@ -66,6 +66,7 @@ typings/ *.iml *.sublime-* .vscode/* +!.vscode/launch.json # OSX .DS_Store diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..f9cc458fdc --- /dev/null +++ b/.vscode/launch.json @@ -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": [ + "/**" + ], + "program": "${workspaceFolder}/.github/dev.js", + "args": [ + "--all" + ], + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + }, + { + "type": "node", + "request": "launch", + "name": "Full Offline Dev", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/.github/dev.js", + "args": [ + "--all --offline" + ], + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + } + ] +} \ No newline at end of file