From fcc3023138e5a6fb52a26873c8e3521d115068ba Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 10 Aug 2020 20:23:36 -0400 Subject: [PATCH] VSCode debug launch configuration --- app/db/.vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/db/.vscode/launch.json diff --git a/app/db/.vscode/launch.json b/app/db/.vscode/launch.json new file mode 100644 index 00000000..25420055 --- /dev/null +++ b/app/db/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 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": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:4200", + "webRoot": "${workspaceFolder}" + } + ] +}