Created
November 2, 2020 08:33
-
-
Save nivesh2/84ef55f5d48c0798719a05fa7e96302f to your computer and use it in GitHub Desktop.
vs code debug ESM node.js
This file contains hidden or 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": "Debug Lambda", | |
| "skipFiles": [ | |
| "<node_internals>/**" | |
| ], | |
| "outputCapture": "std", | |
| "console": "integratedTerminal", | |
| "runtimeArgs": [ | |
| "-r", | |
| "esm" | |
| ], | |
| "env": { | |
| "ENVIRONMENT": "UAT2" | |
| }, | |
| "program": "${workspaceFolder}/mock/debug.js" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment