Created
May 22, 2019 16:53
-
-
Save imclint21/f43d0e3f1a01bbca90ec624e1652ce33 to your computer and use it in GitHub Desktop.
VueJs Debugging in VsCode
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": "yarn", | |
"runtimeExecutable": "yarn", | |
"runtimeArgs": [ | |
"serve" | |
], | |
"port": 8080, | |
"cwd": "${workspaceRoot}", | |
"timeout": 10000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment