Reputation: 2384
As far as I know Typescript is backwards compatible. Could I always import the last version in my projects?
I.e.:
"devDependencies": {
"typescript": "*"
},
Is it recommended? There are any negative implications?
Upvotes: 0
Views: 80
Reputation: 249656
While the typescript team tries to keep the compiler as backward compatible as possible this is not a 100% guarantee.
There is a long list of breaking changes that could create problems when you upgrade.
Upvotes: 3