Skip to content

Commit

Permalink
Fix types root in package.json
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 committed Oct 29, 2024
1 parent 0d28420 commit ea36b5c
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 ea36b5c

Please sign in to comment.