diff --git a/.changeset/tough-papayas-hammer.md b/.changeset/tough-papayas-hammer.md new file mode 100644 index 0000000000..25d7d465c2 --- /dev/null +++ b/.changeset/tough-papayas-hammer.md @@ -0,0 +1,5 @@ +--- +'graphql-modules': patch +--- + +Fix missing attributes in package.json (as preparation for TS 5.0) diff --git a/packages/graphql-modules/package.json b/packages/graphql-modules/package.json index 296ea492ea..981eb570fd 100644 --- a/packages/graphql-modules/package.json +++ b/packages/graphql-modules/package.json @@ -17,11 +17,13 @@ "exports": { ".": { "require": "./dist/index.js", - "import": "./dist/index.mjs" + "import": "./dist/index.mjs", + "types": "./index.d.ts" }, "./*": { "require": "./dist/*.js", - "import": "./dist/*.mjs" + "import": "./dist/*.mjs", + "types": "./*.d.ts" } }, "typings": "dist/index.d.ts",