**Describe the bug** I've noticed that when using `graphql-modules` in a TypeScript project that defines `moduleResolution: "bundler"`: ```jsonc { "compilerOptions": { // ... other config "moduleResolution": "Bundler", "module": "ESNext", "noEmit": true, } } ``` TypeScript cannot resolve the type definitions:  That's because in the generated `dist/package.json`, the `types` field is not present in the `exports` condition: <img width="1624" alt="image" src="https://github.com/Urigo/graphql-modules/assets/12464600/e766ebdc-05cd-4365-b109-4ed0cafbc3c6"> I won't write all the details here because I saw you're using a tool called `bob` to generate the final dist, and the problem is there. I just opened this issue to keep it as a reminder so that when this problem is fixed on the `bob`'s side, you can upgrade it and generate a release. **To Reproduce** 1. Clone this repository: https://github.com/devraul/graphql-modules-type-problem 2. Follow the README instructions **Expected behavior** Working without a problem in TS configs where it defines the `moduleResolution` equals `bundler` **Environment:** - OS: macOS - `graphql-modules`: 2.3.0 - NodeJS: 20.10.0 **Additional context** <!-- Add any other context about the problem here. -->
{ "compilerOptions": { // ... other config "moduleResolution": "Bundler", "module": "ESNext", "noEmit": true, } }