Skip to content

Commit

Permalink
Fix types root in package.json (#274)
Browse files Browse the repository at this point in the history
The types root incorrrectly pointed to the app types instead of the index types. This prevented GoFSH from being imported property in other applications.
  • Loading branch information
cmoesel authored Nov 5, 2024
1 parent cbba64e commit 7011bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"bin": {
"gofsh": "dist/app.js"
},
"types": "dist/app.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,json,d.ts}",
"dist/utils/template.html"
Expand Down

0 comments on commit 7011bfc

Please sign in to comment.