Skip to content

Commit

Permalink
Fix subpath type definitions for older TypeScript resolution (#346)
Browse files Browse the repository at this point in the history
* fix: ensure subpath imports work under older typescript resolution

* Create sour-geese-switch.md
  • Loading branch information
alireza-sheikholmolouki authored Jan 13, 2025
1 parent d503bdc commit d08a901
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/sour-geese-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mirohq/cloud-data-import": patch
---

Subpath type definitions are now compatible with older TypeScript configs
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mirohq/cloud-data-import",
"version": "0.12.4",
"version": "0.12.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
Expand All @@ -23,6 +23,16 @@
"types": "./dist/constants.d.ts"
}
},
"typesVersions": {
"*": {
"constants": [
"dist/esm/constants.d.ts"
],
"*": [
"dist/esm/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit d08a901

Please sign in to comment.