As someone who used UnityScript exclusively for many years, I became very used to defining variables like this:
var name : string = 'Bob';
On a Node-based project, I just started using Typescript, however I noticed that VS Code seems to want to do this instead:
var name: string = 'Bob';
How can I make it add the space between the variable name and the colon?


