Turborepo + trpc setup

Hi guys, I am just trying to get https://github.com/Bekacru/create-t3-turbo by @bekacru running, but I run into quite some type errors. I think it might be a typescript/tsconfig issue, but I am just using everything from the template. nothing changed.

Property 'Provider' does not exist on type '"The property 'useContext' in your router collides with a built-in method, rename this 
│ router or procedure on your backend."


I am using the TS version of the workspace, and put the .env variables in etc. pnpm i ran in the root. It is probably a setting in my vscode or some versioning that's wrong or something that will fix everything, because I doubt the template won't work out of the box since it was updated 2 weeks ago.

Tried asking gpt/perplexity and such, with no success.

similar problem here:
https://discord-questions.trpc.io/m/1181300883233976371
GitHub
Clean and simple starter repo using the T3 Stack along with Expo React Native - Bekacru/create-t3-turbo
I'm seeing an error (attached) where I can get autocompletes on TRPC in the file where the client is defined, but not anywhere I import it in.

```
// client.ts
import { createTRPCProxyClient, httpBatchLink } from "@trpc/client";

import type { AppRouter } from "wherever";

export const trpcClient = createTRPCProxyClient({
links: [
httpBa...
Was this page helpful?