Hi, I have encountered a problem when indenting a ts file with `ggVG=`. The indentation seems to be broken within switch statements. ``` typescript let foo = { name: 'hello' }; foo.title = 'Hello'; if (true) { let bar = {}; let correctIndentation = {}; } switch(foo.name) { case 'hello': let bar = {}; let wrongIndentation = {}; break; default: break; } ``` Thanks a lot for your plugin!