Showing results for 2013 - Page 2 of 2 - TypeScript

Apr 22, 2013
0
0

Announcing 0.9 early previews

Jonathan Turner [MS]
Jonathan Turner [MS]

Today we’re making an early preview available which showcases some of the new features coming in 0.9.0 preview release.  It’s intended for users who wish to try out these features, begin porting existing applications, and who don’t mind a few rough edges in the compiler and language service along the way.  Users who wish...

Apr 1, 2013
0
0

Announcing TypeScript 0.8.3.1

Jonathan Turner [MS]
Jonathan Turner [MS]

We've released a hotfix to the 0.8.3 TypeScript for Visual Studio 2012 plugin.  The 0.8.3 preview release included a broad range of improvements to the TypeScript experience, but it also included an issue that caused editor performance to degrade significantly in some cases.  The hotfix release (0.8.3.1) addresses this issue and...

Mar 25, 2013
0
0

Working on TypeScript 0.9: Generics, Overload on Constants and Compiler Performance

Luke Hoban [MS]
Luke Hoban [MS]

The upcoming TypeScript 0.9 release will represent the most significant changes to TypeScript since the first public release last October, bringing highly requested new language features as well as a significant re-design of the TypeScript compiler. In this post, we’ll give a first quick look at a few of the top investments for the 0.9 releas...

Feb 27, 2013
0
0

Announcing TypeScript 0.8.3

Jonathan Turner [MS]
Jonathan Turner [MS]

Today, we're happy to announce the 0.8.3 preview release of TypeScript.  This release adds incremental polish and bugfixes to the TypeScript compiler, language service, and Visual Studio plugin. Compiler Improvements In the 0.8.3 preview release, we fixed a few key issues that improve compiler correctness and performance, including issues with 't...

Jan 29, 2013
0
0

Trying the Latest TypeScript Build

Ryan Cavanaugh
Ryan Cavanaugh

Starting with release 0.8.2.0, you can now update the TypeScript language services file, the compiled JavaScript that powers most of the TypeScript editor features in Visual Studio. This includes tasks like error reporting, compile-on-save, renaming, go to definition, completion lists, signature help, and others. By updating your TypeScript languag...

Jan 24, 2013
0
0

Walkthrough: Interfaces

Ryan Cavanaugh
Ryan Cavanaugh

When we talk about a type in TypeScript, we mean a collection of things that you can do with a variable (or expression). You might be able to read or write a given property, call a function, use the expression as a constructor, or index into the object. Some objects (like Date) in JavaScript can do nearly all of those! In TypeScript, interfaces are...

Jan 21, 2013
0
0

Announcing TypeScript 0.8.2

Jonathan Turner [MS]
Jonathan Turner [MS]

We’re happy to announce the 0.8.2 preview release of TypeScript.  This release has been focused on  addressing key usability feedback and filling in tooling experiences.  Along the way, we’ve also incorporated some of the highest-rated feature requests and bugfixes. JSDoc Support Being able to see API documentation comments during Intellisense an...

Jan 15, 2013
0
0

Working on 0.8.2

Jonathan Turner [MS]
Jonathan Turner [MS]

We’ve recently branched for the upcoming 0.8.2 release of TypeScript.  Before we talk about what’s new, we wanted to talk a bit about the engineering process that goes into making a release.Going forward, TypeScript development will happen across three types of branches.  Our current two branches of 'master' and 'develop' stay...