Last active
March 9, 2018 06:23
-
-
Save muneebaahmad/9155b75b480cd7fe86b4292d88376d6e to your computer and use it in GitHub Desktop.
VS Code Launch Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"program": "${workspaceFolder}/node_modules/.bin/lambda-local", | |
"args": [ | |
"-l", | |
"index.js", | |
"-h", | |
"handler", | |
"-e", | |
"event.json" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment