Showing results for 2021 - TypeScript

Nov 17, 2021
3
0

Announcing TypeScript 4.5

Daniel Rosenwasser
Daniel Rosenwasser

Today we're excited to announce the release of TypeScript 4.5! If you're not yet familiar with TypeScript, it's a language that builds on JavaScript by adding statically checked types. When you use static types, you can run the TypeScript compiler to check for bugs like typos and mismatches in the shapes of your data, and get handy suggestions...

Nov 2, 2021
1
0

Announcing TypeScript 4.5 RC

Daniel Rosenwasser
Daniel Rosenwasser

Today we're excited to announce our Release Candidate (RC) of TypeScript 4.5! Between now and the stable release of TypeScript 4.5, we expect no further changes apart from critical bug fixes. To get started using the RC, you can get it through NuGet, or use npm with the following command: You can also get editor support by ...

Oct 30, 2021
0
1

Type | Treat – Wrap-up

Orta Therox
Orta Therox

Type | Treat Challenge Wrap-up That's all the challenges done! If you missed any of the challenges they're all available in the Playground here. Let's talk through the final answers to day 5's challenges. Yesterday's Solution Beginner/Learner Challenge In this challenge we were working with an existing object literal which had been 'd. The goal...

Oct 29, 2021
1
0

Type | Treat – Day 5

Orta Therox
Orta Therox

Type | Treat Challenge 5 Welcome to the fifth, and last, challenge! These challenges are a series of blog posts which have 2 code challenges in, one for beginners and one for intermediate TypeScript programmers. We're on day five, which means going over the answers from yesterday and have 2 new challenges. Yesterday's Solution Beginner/Learner ...

Oct 28, 2021
2
0

Type | Treat 2021 – Day 4

Orta Therox
Orta Therox

Type | Treat Challenge 4 Welcome to the fourth challenge! These challenges are a series of blog posts which have 2 code challenges in, one for beginners and one for intermediate TypeScript programmers. We're on day four, which means going over the answers from yesterday and have 2 new challenges. Yesterday's Solution Beginner/Learner Challenge...

Oct 27, 2021
2
0

Type | Treat 2021 – Day 3

Orta Therox
Orta Therox

Type | Treat Challenge 3 Welcome to the third challenge! These challenges are a series of blog posts which have 2 code challenges in, one for beginners and one for intermediate TypeScript programmers. We're on day three, which means going over the answers from yesterday and have 2 new challenges. Yesterday's Solution Beginner/Learner Challenge...

Oct 26, 2021
0
0

Type | Treat 2021 – Day 2

Orta Therox
Orta Therox

Type | Treat Challenge 2 Welcome to the second challenge! These challenges are a series of blog posts which have 2 code challenges in, one for beginners and one for intermediate TypeScript programmers. We're on day two, which means going over the answers from yesterday and showcasing 2 new challenges. Yesterday's Solution Beginner/Learner ...

Oct 25, 2021
1
0

Type | Treat 2021 – Day 1

Orta Therox
Orta Therox

Spooky TypeScript challenges for beginner and intermediate programmers, day 1.

Oct 1, 2021
5
0

Announcing TypeScript 4.5 Beta

Daniel Rosenwasser
Daniel Rosenwasser

Today we are excited to announce the beta release of TypeScript 4.5! To get started using the beta, you can get it through NuGet, or use npm with the following command: You can also get editor support by Some major highlights of TypeScript 4.5 are: ECMAScript Module ...

Aug 26, 2021
4
0

Announcing TypeScript 4.4

Daniel Rosenwasser
Daniel Rosenwasser

Today we're excited to announce the availability of TypeScript 4.4! If you haven't heard of TypeScript yet, it's a language that builds on JavaScript by adding syntax for static types. Tools like the TypeScript compiler just erase those types, leaving you with clean readable JavaScript that you can run anywhere; but those types are there to be...