Skip to content

Instantly share code, notes, and snippets.

@branflake2267
Created October 25, 2019 19:51
Show Gist options
  • Save branflake2267/ecf8454c6af513c6a7ab89c8b5aeb1fd to your computer and use it in GitHub Desktop.
Save branflake2267/ecf8454c6af513c6a7ab89c8b5aeb1fd to your computer and use it in GitHub Desktop.
Ext JS VSCode launch configuration
{
// 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}"
}
]
}
@branflake2267
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment