Skip to content
New issue

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

fix: correctly link types in package.json exports field #1395

Merged
merged 8 commits into from Oct 3, 2022
2 changes: 2 additions & 0 deletions package.json
Expand Up @@ -9,9 +9,11 @@
"default": "./lib/index.js"
},
"./native": {
"types": "./lib/native/index.d.ts",
"default": "./lib/native/index.js"
ivanhofer marked this conversation as resolved.
Show resolved Hide resolved
},
"./node": {
"types": "./lib/node/index.d.ts",
"require": "./lib/node/index.js",
"default": "./lib/node/index.mjs"
}
Expand Down