Skip to content

Commit

Permalink
Add missing declaration export for modifier, services & test-support
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Sep 25, 2024
1 parent 067b29a commit baa9c01
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,18 @@
"default": "./dist/*.js"
},
"./_app_/*": "./dist/_app_/*.js",
"./modifiers/*": "./dist/modifiers/*.js",
"./services/*": "./dist/services/*.js",
"./test-support": "./dist/test-support/index.js",
"./modifiers/*": {
"types": "./declarations/modifiers/*.d.ts",
"default": "./dist/modifiers/*.js"
},
"./services/*": {
"types": "./declarations/services/*.d.ts",
"default": "./dist/services/*.js"
},
"./test-support": {
"types": "./declarations/test-support/index.js",
"default": "./dist/test-support/index.js"
},
"./addon-main.js": "./addon-main.cjs"
},
"typesVersions": {
Expand Down

0 comments on commit baa9c01

Please sign in to comment.