Skip to content

Commit

Permalink
fix(core): adjust vscode debugger path overrides for WebPack 5 debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jan 5, 2021
1 parent c6b3ad3 commit a45b3d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .vscode/launch.json
Expand Up @@ -15,7 +15,9 @@
"trace": true,
"sourceMapPathOverrides": {
"webpack:///${workspaceRoot}/packages/*": "${webRoot}/packages/*",
"webpack:///./src/*": "${webRoot}/examples/webpack-demo-vanilla-bundle/src/*"
"webpack://webpack-demo-vanilla-bundle/../../packages/*": "${webRoot}/packages/*",
"webpack:///./src/*": "${webRoot}/examples/webpack-demo-vanilla-bundle/src/*",
"webpack://webpack-demo-vanilla-bundle/./src/*": "${webRoot}/examples/webpack-demo-vanilla-bundle/src/*"
}
},
{
Expand Down

0 comments on commit a45b3d2

Please sign in to comment.