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
The export map specifies the types incorrectly:
types
colord/package.json
Lines 32 to 98 in 3f859e0
You can verify that it's not working by setting compilerOptions.moduleResolution to Node16.
compilerOptions.moduleResolution
Node16
It should look closer to:
"exports": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } },
Detailed explanation here: microsoft/TypeScript#50067
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The export map specifies the
types
incorrectly:colord/package.json
Lines 32 to 98 in 3f859e0
You can verify that it's not working by setting
compilerOptions.moduleResolution
toNode16
.It should look closer to:
Detailed explanation here: microsoft/TypeScript#50067
The text was updated successfully, but these errors were encountered: