In this blog post, we look at how can make things “read-only” in TypeScript – mainly via the keyword readonly
.
During the last two years, ESM support in TypeScript, Node.js and browsers has made a lot of progress. In this blog post, I explain my modern setup that is relatively simple – compared to what we had to do in the past:
tsconfig.json
in section “Compiling TypeScript with tools other than tsc”.JavaScript’s Arrays are so flexible that TypeScript provides two different kinds of types for handling them:
Array<string>
[number, string, boolean]
In this blog post, we look at the latter – especially how to compute with tuples at the type level.
In this blog post, we take a closer look at template literal types in TypeScript: While their syntax is similar to JavaScript’s template literals, they operate at the type level. Their use cases include:
The ECMAScript proposal “RegExp escaping” (by Jordan Harband and Kevin Gibbons) specifies a function RegExp.escape()
that, given a string text
, creates an escaped version that matches text
– if interpreted as a regular expression.
This proposal is currently at stage 3.
In this blog post, we take a closer look at TypeScript enums:
The blog post concludes with recommendations for what to use when.
tsconfig.json
I was never entirely sure which options to put in my tsconfig.json
and which ones to omit. To change that, I went through the official documentation, collected the most important options, and documented how to use them in this blog post. The result is a much cleaner tsconfig.json
than I had before.
tsconfig.json
recommendations of several TypeScript programmers. Links to them are listed at the end.I’m curious what your experiences with tsconfig.json
are: Do you agree with my choices?
Traditionally, we could only apply regular expression flags such as i
(for ignoring case) to all of a regular expression. The ECMAScript feature “Regular Expression Pattern Modifiers” (by Ron Buckton) enables us to apply them to only part of a regular expression. In this blog post we examine how they work and what their use cases are.
Regular expression pattern modifiers attributes reached stage 4 in October 2024 and will probably be part of ECMAScript 2025.
The ECMAScript feature “Import Attributes” (by Sven Sauleau, Daniel Ehrenberg, Myles Borins, Dan Clark and Nicolò Ribaudo) helps with importing artifacts other than JavaScript modules. In this blog post, we examine what that looks like and why it’s useful.
Import attributes reached stage 4 in October 2024 and will probably be part of ECMAScript 2025.
Starting with v23.6.0, Node.js supports TypeScript without any flags. This blog post explains how it works and what to look out for.