This video covers debugging Ext JS with VSCode.
VSCode Launchers
These launchers can be used to launch the webpack dev server and chrome browser for debugging Ext JS.
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": "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}", | |
} | |
] | |
} |
1 comment:
In this course, you'll learn fundamental programming concepts in JavaScript. You'll start with basic data structures like numbers and strings. Then you'll learn to work with arrays, objects, functions, loops, if/else statements, and more. best free microservice courses
Post a Comment