We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
require
In the ESM build of this module there is a call to require that originates here:
json-schema-tree/src/mergers/mergeAllOf.ts
Line 7 in c16711d
In an ES module, there is no require unless it is created with createRequire, causing this module to not be usable as ESM.
createRequire
The bug prevents the ESM code from being used. I override with the CJS code for now.
ESM cannot be used.
ESM should be usable.
Use CJS version for now.
Import ESM build as ESM
Chrome 115, built using Vite
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the ESM build of this module there is a call to
require
that originates here:json-schema-tree/src/mergers/mergeAllOf.ts
Line 7 in c16711d
In an ES module, there is no
require
unless it is created withcreateRequire
, causing this module to not be usable as ESM.Context
The bug prevents the ESM code from being used. I override with the CJS code for now.
Current Behavior
ESM cannot be used.
Expected Behavior
ESM should be usable.
Possible Workaround/Solution
Use CJS version for now.
Steps to Reproduce
Import ESM build as ESM
Environment
Chrome 115, built using Vite
The text was updated successfully, but these errors were encountered: