In VS Code, in debug mode, when I move my mouse over an object, the keys are sorted in alphabetical order. Can VS Code be configured to display the keys in their actual order?
When hovering, I’d like the entries to be displayed in their actual order (b
then a
instead of a
then b
). Is this possible, and if so, how do I go about it?
On the Internet, I’ve been told to use console.log()
but this solution is tedious, so I’d like it to be automatic on each hover.