Deno
Cross-runtime TypeScript Library Development: A Deno-Node Workflow
Are you a TypeScript developer who loves Deno’s safe and sandboxed environment and its out-of-the-box TypeScript, LSP, linting, formatting, stdlib testing and benchmarking support? Join me as I …
Using Conditional Types in TypeScript
Dive into TypeScript's conditional types and discover how they empower developers to create flexible type mappings and enhance type safety. This article explores the mechanics of conditional …
TypeScript's keyof operator and possible uses
Discover the incredible potential of the keyof operator in TypeScript and revolutionize your code for a better development experience.
JavaScript objects to TypeScript enumerations, const enums, ambient enums
Learn how to leverage TypeScript's enums, const enums, ambient enums and how they impact generated JavaScript code. Unveil the benefits and drawbacks of using const enums.
Algebraic Data Types in TypeScript
Note: the code for the TypeScript (to help you follow along) is available here: Encoding Algebraic Data Types in TypeScript code Background Recently I've been reviewing TypeScript code at work. A …