In my Vue+Vuex project, I am trying to debug using Visual Studio Code. I have the debugger launching properly using Chrome debug tools, and properly using a map, but when I
I think you are actually trying to set break point at the middle of a statement.
It is actually a single statement.
Consider below statement.
You can set a break point infront of it.
> var obj = { a: value1, b: value2 }
If you write this as
var obj = { //can set break point here
a: value1, //you can't set break point in this line
b: value2 //you can't set break point in this line
}