From 3347f5d5b3b0ab398cf9b1c3b254216243962296 Mon Sep 17 00:00:00 2001 From: Carmine DiMascio Date: Fri, 25 Dec 2020 13:45:24 -0500 Subject: [PATCH] chore: launch.json --- launch.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 launch.json diff --git a/launch.json b/launch.json new file mode 100644 index 00000000..ec4d7e8a --- /dev/null +++ b/launch.json @@ -0,0 +1,44 @@ +{ + // 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": [ + + { + "name": "Attach", + "port": 9229, + "request": "attach", + "skipFiles": ["/**"], + "type": "pwa-node" + }, + { + "name": "Fastify Attach", + "port": 9320, + "request": "attach", + "skipFiles": ["/**"], + "type": "pwa-node" + }, + { + "type": "node", + "request": "launch", + "name": "Mocha All", + "runtimeExecutable": "/Users/cdimasci/.nvm/versions/node/v15.1.0/bin/node", + "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", + "args": [ + "-r", + "source-map-support/register", + "-r", + "ts-node/register", + "--timeout", + "999999", + "--colors", + "${workspaceFolder}/test/**/*.spec.ts" + ], + "env": { "TS_NODE_FILES": "true" }, + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "protocol": "inspector" + } + ] +}