Live data from Hacker News

Announcing TypeScript 2.1

blogs.msdn.microsoft.com

1–10 of 226 posts

Re: Announcing TypeScript 2.1

#3
Async/await support for most browsers and node-0.12+ is definitely a welcome feature, callback hell and tripping over promise chains is definitely one of the most painful experience in TS development IMO.

Re: Announcing TypeScript 2.1

#4
post #2

I have been waiting for object rest and spread for ages. Thank you to the maintainers for working hard on this feature.

Same here. I already used it exessively in JavaScript to prevent mutations and missed it a bit in TypeScript.

Re: Announcing TypeScript 2.1

#7
We are using async await with 2.1 rc and it works flawlessly. I also love the keyof, with that we can remove tons of "any" types from our code base.

Amazing work TypeScript team! This release has been a lot of work!

Re: Announcing TypeScript 2.1

#8
It's interesting to me that all of the initial reactions I've seen to this announcement have been around the introduction of async and object spread, which are available with babel, but the typescript specific features such as mapped types are completely ignored.

I don't really have any particular meaning behind that observation, only that it tickled my funny bone a little bit.

Re: Announcing TypeScript 2.1

#10
I recently started using TS instead of JS and I've been loving it. I find errors much earlier and while the tooling could be a bit better, I honestly find it less exhausting than keeping up with Babel.
Post reply on HN