From ea36b5c82381d8493477c2121ae7a5e093bf1dbd Mon Sep 17 00:00:00 2001 From: Chris Moesel Date: Tue, 29 Oct 2024 14:30:45 -0400 Subject: [PATCH] Fix types root in package.json The types root incorrrectly pointed to the app types instead of the index types. This prevented GoFSH from being imported property in other applications. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 21aa5fd..eaccabc 100644 --- a/package.json +++ b/package.json @@ -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"