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
Using the latest version with TypeScript 5.3.3 I'm seeing the following error:
Could not find a declaration file for module 'testdouble-qunit'. '/home/main/Code/open-source/ember-popper-modifier/node_modules/.pnpm/[email protected]/node_modules/testdouble-qunit/dist/index.modern.js' implicitly has an 'any' type.
There are types at '/home/main/Code/open-source/ember-popper-modifier/node_modules/testdouble-qunit/dist/index.d.ts', but this result could not be resolved when respecting package.json "exports". The 'testdouble-qunit' library may need to update its package.json or typings.
But the build only includes types for the require export in dist/index.d.ts. Types for the default export seems to be missing. I can "fix" the issue if copying the dist/index.d.ts to dist/index.modern.d.ts in node_modules/testdouble-qunit.
Using the latest version with TypeScript 5.3.3 I'm seeing the following error:
The project defines two exports:
testdouble-qunit/package.json
Lines 6 to 9 in 923feb4
But the build only includes types for the
require
export in dist/index.d.ts. Types for thedefault
export seems to be missing. I can "fix" the issue if copying thedist/index.d.ts
todist/index.modern.d.ts
innode_modules/testdouble-qunit
.I noticed the same issue with another package of yours: alexlafroscia/qunit-wait-for#300
The text was updated successfully, but these errors were encountered: