Skip to content

Commit

Permalink
Fix types issue (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsotimus authored Feb 2, 2024
1 parent 27156da commit 0a83187
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/react-posthog-consent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"import": "./dist/vite/index.js"
}
},
"types": "src/core/index.d.ts",
"typings": "src/core/index.d.ts",
"types": "src/core/types.d.ts",
"typings": "src/core/types.d.ts",
"files": [
"dist",
"package.json",
Expand Down
4 changes: 2 additions & 2 deletions packages/vite-plugin-posthog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"scripts": {
"build": "rollup -c"
},
"types": "dist/core/index.d.ts",
"typings": "dist/core/index.d.ts",
"types": "dist/core/types.d.ts",
"typings": "dist/core/types.d.ts",
"exports": {
".": {
"import": "./dist/core/index.js"
Expand Down

0 comments on commit 0a83187

Please sign in to comment.