Skip to content

Instantly share code, notes, and snippets.

View dmurvihill's full-sized avatar

Dolan Murvihill dmurvihill

  • Portland, OR
View GitHub Profile
@danpetitt
danpetitt / esmodules.md
Last active April 21, 2024 21:23
Typescript, Jest and ECMAScript Modules

Typescript, Jest and ECMAScript Modules (ESM)

Package.json

Add the type property to package.json to ensure modules are supported:

{
  "type": "module",
}