Open fabis94 opened 1 year ago
This is the cause of typescript 5 migration. It looks like package.json exports module is configured incorrectly. You can set resolvePackageJsonExports to false to use the old typescript system of module export resolution and wait for authors to fix this issue.
@Waujito Setting 'resolvePackageJsonExports' to false isn't a real fix tho as that would disable exports
resolution entirely for all packages. The real fix would be to fix this package's package.json
fixed in vue-tippy@v6.2.0
It works, thank you!
@fabis94 are you happy to close this issue should you confirm it is working in v6.2.0?
This is when importing the package from a repo that uses the
nodenext
ornode16
TypeScriptmoduleResolution
algorithm. If the build file extension is.mjs
, then the typings file must be.d.mts
. Either that or you must specify the typings file explicitly in the exports map of your package.json.