Help needed: Cannot find module '@wasp/auth' Hi everyone, I'm having trouble compiling my Wasp project, and I keep getting errors related to @wasp/auth.
Error messages: plaintext Copier Modifier --- Building SDK... ------------------------------------------------------------
[ Wasp ] src/pages/LoginPage.tsx(2,23): error TS2307: Cannot find module '@wasp/auth' or its corresponding type declarations. [ Wasp ] src/pages/LoginPage.tsx(5,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations. [ Wasp ] src/pages/MainPage.tsx(1,25): error TS2307: Cannot find module '../../.wasp/out/sdk/auth' or its corresponding type declarations. [ Wasp ] src/pages/MessagesPage.tsx(2,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations. [ Wasp ] src/pages/NotificationsPage.tsx(2,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations. [ Wasp ] src/pages/RegisterPage.tsx(2,24): error TS2307: Cannot find module '@wasp/auth' or its corresponding type declarations. [ Wasp ] src/pages/RegisterPage.tsx(5,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations. What I have tried so far: Running wasp clean, deleting .wasp/, node_modules/, and package-lock.json, then reinstalling everything (npm install). Checking the .wasp/out/sdk/wasp/auth folder, and it does exist. Manually verifying my package.json, prisma version, and Wasp version (0.16.2). Questions: Is there a specific way to ensure @wasp/auth is correctly generated? Should I reference @wasp/auth differently in my imports? Any suggestions on how to resolve this? Thanks in advance for any help!