Description of the bug
fuse.js v7.0.0
import
import Fuse from "fuse.js";
tsconfig.json (https://github.com/tsconfig/bases/blob/main/bases/node20.json)
"module": "node16",
"moduleResolution": "node16",
package.json
"type": "commonjs",
"engines": {
"node": "20.x"
},
typescript error
error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("fuse.js")' call instead. To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with { "type": "module" }.
Based on comments in this thread, this package incorrectly exports typings.
microsoft/TypeScript#53045 (comment)
The error was resolved when I copied fuse.d.ts to fuse.d.cts and manually edited node_modules/fuse.js/package.json
"exports": {
".": {
"import": {
"default":"./dist/fuse.mjs",
"types": "./dist/fuse.d.ts"
},
"require": {
"default":"./dist/fuse.cjs",
"types": "./dist/fuse.d.cts"
}
}
}
Seems like fuse.js needs to expose d.cts and d.ts.
Description of the bug
fuse.js v7.0.0
import
tsconfig.json (https://github.com/tsconfig/bases/blob/main/bases/node20.json)
package.json
typescript error
Based on comments in this thread, this package incorrectly exports typings.
microsoft/TypeScript#53045 (comment)
The error was resolved when I copied
fuse.d.tstofuse.d.ctsand manually editednode_modules/fuse.js/package.jsonSeems like fuse.js needs to expose
d.ctsandd.ts.