Skip to content

Instantly share code, notes, and snippets.

View Gioviii78's full-sized avatar
💭
I may be slow to respond.

Giovanni Gioviii78

💭
I may be slow to respond.
  • Netherland
  • 13:25 (UTC -12:00)
View GitHub Profile
@Gioviii78
Gioviii78 / 00-typescript-esm.md
Created March 24, 2025 20:29 — forked from slavafomin/00-typescript-esm.md
Using TypeScript with native ESM

Using TypeScript Node.js with native ESM

This reference guide shows how to configure a TypeScript Node.js project to work and compile to to native ESM.

Rationale

CommonJS module system was introduced by the Node.js developers due to the lack of the notion of "modules" in the original JavaScript (ECMAScript) language specification at that time. However, nowadays, ECMAScript has a standard module system called ESM — ECMAScript Modules, which is a part of the accepted standard. This way CommonJS could be considered vendor-specific and obsolete/legacy. Hopefully, TypeScript ecosystem now supports the "new" standard.

So the key benefits are: