UNPKG

@benie/lambda-lib

Version:

Builders and tools for creating AWS Lambda function handlers that provides automation for things such as logging, instrumentation and parameters propagation

30 lines 1.01 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}\\index.js" }, { "type": "node", "request": "launch", "name": "Mocha Debug", "sourceMaps": true, "stopOnEntry": false, "console": "internalConsole", "cwd": "${workspaceRoot}", "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", "args": ["${file}", "--colors", "--no-timeouts"], "outFiles": ["${workspaceRoot}/**/*.js"], "runtimeExecutable": null, "env": { "AWS_REGION": "us-west-2" } } ] }