From c38135d6770d96977dc35914b8c6d0ecfca13d77 Mon Sep 17 00:00:00 2001 From: Niel Rohling Date: Thu, 7 Feb 2019 22:15:30 +0100 Subject: [PATCH] debugging with vscode-chrome-debugger --- .env | 1 + .vscode/launch.json | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .env create mode 100644 .vscode/launch.json diff --git a/.env b/.env new file mode 100644 index 0000000..6ce384e --- /dev/null +++ b/.env @@ -0,0 +1 @@ +BROWSER=none diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5f7d326 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceRoot}/src", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } + } + ] +}