Skip to content

Commit

Permalink
Merge pull request #509 from mkszepp/fix-ts-declaration
Browse files Browse the repository at this point in the history
Add missing export for ts declaration
  • Loading branch information
NullVoxPopuli authored Aug 5, 2024
2 parents a373883 + d8f3ed8 commit 7574e8a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions ember-inflector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,21 @@
"license": "MIT",
"author": "",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
".": {
"types": "./src/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./src/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.cjs"
},
"files": [
"addon-main.cjs",
"declarations",
"dist"
"dist",
"src"
],
"scripts": {
"build": "rollup --config",
Expand Down

0 comments on commit 7574e8a

Please sign in to comment.