This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
Releases: barbatus/typescript
Releases · barbatus/typescript
0.6.7
0.6.5
0.6.3
0.6.0
- 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 totsconfig.json
as follows:
"baseUrl": ".",
"paths": {
"*": ["*"]
}