Created
April 7, 2020 22:05
-
-
Save reilly3000/8ef28a9420984349b86230c1b928b97f to your computer and use it in GitHub Desktop.
VSCode Pulumi launch.json for interactive debugging
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}/index.js", | |
"skipFiles": [ | |
"<node_internals>/**" | |
], | |
"env": { | |
"PULUMI_TEST_MODE": "true", | |
"PULUMI_NODEJS_STACK": "my/stack/name", | |
"PULUMI_NODEJS_PROJECT": "my-project-name"}, | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment