From my understanding, Typescript is designed to be backwards compatible. Would it be safe for me to always import the latest version in my projects?
For example:
"devDependencies": {
"typescript": "*"
},
Is this best practice? Are there any potential downsides or negative implications to consider?