Created
February 6, 2020 21:33
-
-
Save miohtama/d921ef4e59e30c6d1bdb818a373e1ca1 to your computer and use it in GitHub Desktop.
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
{ | |
// 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 MailerLite test", | |
"runtimeExecutable": "npm", | |
"cwd": "${workspaceFolder}", | |
"runtimeArgs": [ | |
"run-script", | |
"test-mailerlite", | |
"--", | |
"--inspect-brk=9229", | |
], | |
"port": 9229, | |
"skipFiles": [ | |
"<node_internals>/**" | |
], | |
"env": { | |
"PATH": "/Users/moo/.nvm/versions/node/v11.0.0/bin:${env:PATH}" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment