From 9d9a0e890d41960721d396c787b41f97f8fbf4b8 Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Thu, 21 Jun 2018 01:43:01 +0300 Subject: [PATCH] add test vscode launch.json --- .vscode/launch.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e5dcecb --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + // 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": "attach", + "name": "Attach to Remote", + "address": "127.0.0.1", + "sourceMaps": true, + "outFiles": [ "${workspaceFolder}/server/dist/**/*.js" ], + "sourceMapPathOverrides": { + "webpack:///./*": "c:\\Projects\\hastic-server\\server\\*" + }, + //"outFiles": [ "/home/alex/Projects/hastic-server/server/server.js" ], + "port": 9229, + "restart": true, + "trace": true + } + ] +} \ No newline at end of file