UNPKG

wickrio-bot-api

Version:
44 lines (43 loc) 1.3 kB
{ // 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", "diagnosticLogging": true, "configurations": [ { "name": "Develop", "type": "node", "request": "launch", "protocol": "inspector", "program": "${workspaceRoot}/src/broadcast-bot.js", "stopOnEntry": false, // "args": [], "cwd": "${workspaceRoot}", "preLaunchTask": null, "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/nodemon", "args": ["${workspaceRoot}/broadcast-bot.js"], // "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/babel-node", "runtimeArgs": ["--nolazy", "--require", "@babel/register"], "env": { "NODE_ENV": "development" }, "console": "internalConsole", "sourceMaps": false, "outFiles": [] }, { "name": "Debug Jest Tests", "type": "node", "request": "launch", "runtimeArgs": [ "--inspect-brk", "${workspaceRoot}/node_modules/.bin/jest", "--runInBand" ], "console": "internalConsole", "internalConsoleOptions": "neverOpen", "port": 9229 } ] }