Created
January 7, 2019 06:35
-
-
Save branflake2267/b9c23d5b15bd68c1e20c48aeed38a505 to your computer and use it in GitHub Desktop.
Debug Ext JS in VSCode using these launchers. Includes WebPack Dev Server Launcher and Chrome Debugger launcher.
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": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Debug App", | |
| // https://github.com/webpack/docs/wiki/webpack-dev-server | |
| "program": "${workspaceFolder}/node_modules/webpack-dev-server/bin/webpack-dev-server.js", | |
| "args": [ | |
| "--env.browser=false", | |
| "--env.environment=development", | |
| "--env.verbose=no", | |
| "--hot", | |
| "--inline", | |
| "--client-log-level=info", | |
| "--config", | |
| "webpack.config.js" | |
| ], | |
| "env": { | |
| "environment": "development" | |
| }, | |
| "autoAttachChildProcesses": true | |
| }, | |
| { | |
| "type": "chrome", | |
| "request": "launch", | |
| "name": "Launch Chrome", | |
| "url": "http://localhost:1962", | |
| "webRoot": "${workspaceFolder}", | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This video covers using these launchers: https://youtu.be/cXrvLcyGbXM