



Maximum bound parameters per query limit of 100 going to be increased eventually? Just ran into a bug with Prisma, because that affects basically every query with relations as soon as you have more than 100 rows in a table 




./functions API endpoints.Cannot find module '@prisma/client'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?ts(2792)npx wrangler dev23:08:22.672 Using v2 root directory strategy
23:08:22.696 Success: Finished cloning repository files
23:08:24.728 wrangler.toml config file detected
23:08:25.838 Failed: an internal error occurred. If this continues, contact support: https://cfl.re/3WgEyrH./functionsThen configure the runtime types by creating a functions/tsconfig.json file:
functions/tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext"],
"types": ["@cloudflare/workers-types"]
}
}
If you already have a tsconfig.json at the root of your project, you may wish to explicitly exclude the /functions directory to avoid conflicts. To exclude the /functions directory:
tsconfig.json
{
"include": ["src/**/*"],
"exclude": ["functions/**/*"],
"compilerOptions": {
}
}import { PrismaClient } from '@prisma/client';
import { PrismaD1 } from '@prisma/adapter-d1';Cannot find module '@prisma/client'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?ts(2792)npx wrangler dev