Start here | |
---|---|
Video introduction | Anders Hejlsberg. |
Typescript in 5 minutes | Introduction from the official docs. |
TypeScript Playground | I highly recommend having this open when going through any the handbook. Copy your code into the compiler and change it improve your understanding. |
If you like a hands on approach then I recommend starting with the examples. Head over to the handbook to fill in the missing gaps. | |
TypeScript Handbook |
It's from the official docs. Read this next. It covers all the ins and outs of typescript. Start with:
Then if you want to dig deeper:
The rest can be used as a reference when needed. |
Useful Tips and Resources | |
Clean Code Typescript | Clean Code's good practices and code examples rewritten in TS. |
Type-check your javascript | DY recommended this video. |
Babel TS Caveats | @babel/plugin-transform-typescript isn't
able to implement all features of the typescript compiler (tsc ) so this page
details the limitations and available workarounds. |
React TS Example | Quick intro to using TS with React. |
React TS Cheatsheet | |
TypeScript Deep Dive eBook | |
TS FAQ | Answers more specific questions and address common complaints. |