Announcing TypeScript 2.1
blogs.msdn.microsoft.com
Announcing TypeScript 2.1
1–10 of 226 posts
Re: Announcing TypeScript 2.1
#2I have been waiting for object rest and spread for ages. Thank you to the maintainers for working hard on this feature.
Re: Announcing TypeScript 2.1
#3Async/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
#4I 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
#5Hurrah for object spreads! Time to go grepping for calls to _.default and _.extend.
Re: Announcing TypeScript 2.1
#6"
We spread ourselves thin, but this is the moment you’ve been awaiting – TypeScript 2.1 is here!
"
Re: Announcing TypeScript 2.1
#7We 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
#8It'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
#9Really happy with the development pace. I started using it by contributing to VSCode and was very pleased with the great tooling and sane language and syntactic sugar.
Re: Announcing TypeScript 2.1
#10I 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.