>Sample repo reproducing the issue can be found here: https://github.com/ryerrappa/rtk-query-type-import-issue - @reduxjs/tookit 2.0.1 - Vite 5.0.0 - Typescript 5.2.2 - tsconfig moduleResolution "bundler" Receive the following error when attempting to import the `MutationTrigger` type. ``` Cannot find module @reduxjs/toolkit/dist/query/react/buildHooks ``` Using vite with the following tsconfig. ```json { "compilerOptions": { "composite": true, "skipLibCheck": true, "module": "ESNext", "moduleResolution": "bundler", "allowSyntheticDefaultImports": true }, "include": ["vite.config.ts"] } ```