You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when consuming this project with moduleResolution: Node16/NodeNext fail with the following errors:
.../node_modules/micro-memoize/src/Cache.ts(4,10): error TS1286: ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.
Add type: module and use .cjs/.mjs extension would fix it.
Currently when consuming this project with
moduleResolution: Node16/NodeNext
fail with the following errors:Add
type: module
and use.cjs/.mjs
extension would fix it.i.e.:
type: module
dist/micro-memoize.cjs.js
->dist/micro-memoize.cjs
dist/micro-memoize.mjs.js
->dist/micro-memoize.mjs
The text was updated successfully, but these errors were encountered: