For every typescript file visual studio code uses an auto indentation of 8 spaces. This is a bit too much for my taste but I can\'t find where to change it.
Maybe it
How to turn 4 spaces indents in all files in VS Code to 2 spaces
( {2})(?: {2})(\b|(?!=[,'";\.:\*\\\/\{\}\[\]\(\)])) in the search field$1 in the replace fieldHow to turn 2 spaces indents in all files in VS Code to 4 spaces
( {2})(\b|(?!=[,'";\.:\\*\\\/{\}\[\]\(\)])) in the search field$1$1 in the replace fieldNOTE: You must turn on PERL Regex first. This is How:
"search.usePCRE2": trueHope someone sees this.