I am curious if others that are using TypeScript are also implementing properties (http://www.codingdefined.com/2015/05/get-and-set-property-in-typescript.html).
I tend to like to use properties, even in my TypeScript code, but others on my team think it is overkill. For the same reasons you have properties in C# code (Why use simple properties instead of fields in C#?), I think that properties in TypeScript are good.
This isn't an "I'm curious if other people agree with me" question, but rather I am interested in knowing if others are actually doing properties in TypeScript and why or why not. Very much like the same question asked for C# properties.
I couldn't find anyone actually asking the question for TypeScript.