Llabe
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
@Tom It works on production, deployed on vercel. Thank u so much for the help!
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
I am going to try to deploy, and let you know
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
And I was adding it to the convex one, not the global one
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
@Tom I belive I may have fixed it, according to AI I have to add: "downlevelIteration": true to the tsconfig
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
I can send you the project, I fine
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
What do you mean another tsconfig?
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
"build": "next build",
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
yes
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
npm run build
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/": ["./src/"]
}
},
"include": ["next-env.d.ts", "/*.ts", "/.tsx", ".next/types/**/.ts"],
"exclude": ["node_modules"]
}
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
{
/* This TypeScript project config describes the environment that
* Convex functions run in and is used to typecheck them.
* You can modify it, but some settings required to use Convex.
/
"compilerOptions": {
/ These settings are not required by Convex and can be modified. /
"allowJs": true,
"strict": true,
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
/ These compiler options are required by Convex /
"target": "ESNext",
"lib": ["ES2021", "dom"],
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"isolatedModules": true,
"noEmit": true
},
"include": ["./**/"],
"exclude": ["./_generated"]
}
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
I can send you the github repo if needed
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag

33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
14
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
Nextjs
33 replies
CCConvex Community
•Created by Llabe on 2/6/2025 in #support-community
Type 'Iterable<FromType>' can only be iterated through when using the '--downlevelIteration' flag
I am using it in my convex file, like schema and functions. Let me check if I may be using it by mistake somewhere else
33 replies
CCConvex Community
•Created by Llabe on 1/24/2025 in #support-community
gemini
So far it works. I havent tried in production
4 replies
CCConvex Community
•Created by Llabe on 10/14/2024 in #support-community
What is the best approach for handling members?
I have used but never for a "Big project", I have been using NoSQL for my last projects.
6 replies
CCConvex Community
•Created by Llabe on 10/14/2024 in #support-community
What is the best approach for handling members?
Thanks @ballingt !
6 replies
CCConvex Community
•Created by Llabe on 10/14/2024 in #support-community
Schema with array of objects
Ohh I like that approach. Ill give it a try. Thanks!
5 replies