UNPKG

nodejs-event-manager

Version:

A nodeJS Event Manager to emit, and listen event through nodeJS

37 lines 1.19 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", "configurations": [{ "type": "node", "request": "launch", "name": "Launch Program", "program": "${workspaceFolder}/build/index.js", "preLaunchTask": "tsc: build - tsconfig.json", "outFiles": [ "${workspaceFolder}/build/**/*.js" ] }, { "type": "node", "request": "launch", "name": "Mocha File", "env": { "NODE_ENV": "test" }, "cwd": "${workspaceFolder}", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--exit", "--timeout", "999999", "--colors", "${file}" ], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "protocol": "inspector" } ] }