Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Releases: barbatus/typescript

0.6.7

02 Jul 19:31
Compare
Choose a tag to compare

TypeScript upgraded to 2.4.0

0.6.5

01 Mar 07:30
Compare
Choose a tag to compare

TypeScript upgraded to 2.2.0

0.6.3

26 Jan 12:24
Compare
Choose a tag to compare

TypeScript upgraded to 2.1.5

0.6.0

04 Dec 18:27
Compare
Choose a tag to compare
  • TypeScript upgraded to 2.1.1.
    TypeScript has got some nice features like object spread operator and async/await for ES5 target.
  • Path mappings support added. You can now use imports like imports/client/foo instead of Meteor
    rooted paths like /imports/client/foo if you add to tsconfig.json as follows:
  "baseUrl": ".",
  "paths": {
    "*": ["*"]
   }