Skip to content

Instantly share code, notes, and snippets.

@reilly3000
Created April 7, 2020 22:05
Show Gist options
  • Save reilly3000/8ef28a9420984349b86230c1b928b97f to your computer and use it in GitHub Desktop.
Save reilly3000/8ef28a9420984349b86230c1b928b97f to your computer and use it in GitHub Desktop.
VSCode Pulumi launch.json for interactive debugging
{
"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