-
Notifications
You must be signed in to change notification settings - Fork 225
Open
Description
When importing in Node12+ with ECMAScript module support enabled
import * as jsonpatch from "fast-json-patch";You won't get a compile-time error from Typescript, but you will get a runtime error when calling something like jsonpatch.applyPatch stating that the method does not exist.
Because it is defined as a default export, it should be imported like:
import jsonPatch from "fast-json-patch"Note that I changed the casing as well so that the IDE doesn't complain about spelling.
jkazimierczak
Metadata
Metadata
Assignees
Labels
No labels