Skip to content

Commit

Permalink
expose types in package.json (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
halocline authored Aug 12, 2024
1 parent 78740d4 commit 6b4ea94
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions grommet-leaflet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
],
"main": "./dist/grommet-leaflet.umd.cjs",
"module": "./dist/grommet-leaflet.js",
"types": "./dist/index.d.ts",
"types": "./src/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/grommet-leaflet.js",
"types": "./dist/index.d.ts"
"types": "./src/index.d.ts"
},
"require": "./dist/grommet-leaflet.umd.cjs"
"require": {
"default": "./dist/grommet-leaflet.umd.cjs",
"types": "./src/index.d.ts"
}
}
},
"authors": [
Expand Down

0 comments on commit 6b4ea94

Please sign in to comment.