Last active
December 13, 2020 10:24
VS Code launch config for react.js . source: https://stackoverflow.com/a/39607924
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": [ | |
{ | |
"name": "Launch via NPM", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}/src", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": [ | |
"run-script", "start" | |
], | |
"port": 3000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment