From dbdb26a0444598cb6757cfb41f2abf74a89ed124 Mon Sep 17 00:00:00 2001 From: Christoph Jahn Date: Wed, 28 Aug 2019 15:26:17 +0200 Subject: Fixed endless compilation devcontainer, debugging --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..243eeb20 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Meteor: Chrome", + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "Meteor: Node", + "runtimeExecutable": "/home/wekan/.meteor/meteor", + "runtimeArgs": ["run", "--inspect-brk=9229"], + "outputCapture": "std", + "port": 9229, + "timeout": 60000 + } + ], + "compounds": [ + { + "name": "Meteor: All", + "configurations": ["Meteor: Node", "Meteor: Chrome"] + } + ] +} -- cgit v1.2.3-1-g7c22