Understanding the Role of tsconfig.json in TypeScript Projects
Learn what tsconfig.json does in TypeScript projects, why you need it, and see practical configuration examples.
Tag archive
Learn what tsconfig.json does in TypeScript projects, why you need it, and see practical configuration examples.

strict: true is 8 flags. Migration order from cheap to expensive, flag-by-flag cost on a 30k LOC codebase, and why strictNullChecks goes last.

noPropertyAccessFromIndexSignature is the strict flag most codebases skip. When it pays off, when it doesn't, a migration plan, and a codemod sketch.
Learn the core purpose of the tsconfig.json file, its structure, and why every TypeScript project needs one.
Introduction I am building a CLI tool that lets you add features into your project via...

In Angular development, long import paths can slow down large projects in the long run. TypeScript...
Recently, a friend shared a TypeScript project with me, and as I delved into it, I noticed something...

Set noImplicitOverride: true It lets Typescript do more of what typescript is meant to do....
Learn how to set up absolute import paths in TypeScript using tsconfig.json baseUrl and paths for cleaner code and improved maintainability.
Do you have a webpack setup you've labored over, but want to try parcel? Blocked on migration because...

I’m a big fan of TypeScript. Each new project I prefer to write on TS rather than native JavaScript....
Reusable TypeScript configuration files to extend from.