Created
October 25, 2019 19:51
-
-
Save branflake2267/ecf8454c6af513c6a7ab89c8b5aeb1fd to your computer and use it in GitHub Desktop.
Ext JS VSCode launch configuration
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": "Debug App", | |
"program": "${workspaceFolder}/node_modules/webpack-dev-server/bin/webpack-dev-server.js", | |
"args": [ | |
"--env.browser=false", | |
"--env.enviroment=development", | |
"--env.verbose=no", | |
"--hot", | |
"--inline", | |
"--client-log-level=info", | |
"--config", | |
"./webpack.config.js" | |
], | |
"env": { | |
"environment": "development", | |
"NODE_ENV": "development" | |
} | |
}, | |
{ | |
"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
https://www.youtube.com/watch?v=cXrvLcyGbXM&list=PLBbgqtDgdc_RrQccfkhjSuPInoDuJP6ap&index=7&t=0s - Tutorial