From 171fbb078536d4c678447405833a9a9a22a4a430 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 20 Apr 2018 10:59:35 -0400 Subject: [PATCH] vs code debugging node --- .vscode/launch.json | 18 ++++++++++++++++++ .vscode/tasks.json | 12 ++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..d9b0460f86 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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": "Jasmine Individual Test", + "program": "${workspaceRoot}\\node_modules\\jasmine\\bin\\jasmine.js", + "preLaunchTask": "npm run build", + "args": [ + "${workspaceFolder}/dist\\spec\\node\\services\\nodeCryptoFunction.service.spec.js" + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..db998c99fc --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "npm run build", + "type": "shell", + "command": "npm run build" + } + ] +} \ No newline at end of file