Cloud Function fails after upgrading to node-appwrite 12.1.0-rc.4 due to typescript
- 0
- Functions
- Cloud

Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/usr/local/server/src/function/node_modules/node-appwrite/dist/client' imported from /usr/local/server/src/function/node_modules/node-appwrite/dist/index.mjs
It worked fine when node-appwrite version was 9.0.0. This seems to be some typescript misconfiguration. I tried various combinations but none of them worked. Can someone please help identify what might be the issue? Thanks in advance.
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"moduleDetection": "force",
"isolatedModules": true,
"rootDir": "src",
"resolveJsonModule": true,
"sourceMap": true,
"allowJs": true,
"outDir": "dist",
"noImplicitReturns": true,
"noUnusedLocals": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}
Recommended threads
- Does appwrite have any alternative solut...
Hi Everyone, ... I am looking for a solution for AWS ECS Fargate in appwrite. Can anyone let me know if this is possible?
- MCP Integration
The appwrite has their MCP And this MCP is working fine with the VS code copilot but not with the other tools like Cline, Roo code...I have tried and getting th...
- Appwrite realtime didn't work
``` useEffect(() => { const { client } = createClient(); const unsubscribe = client.subscribe(`databases.${process.env.EXPO_PUBLIC_APPWRITE_DATABASE}.t...
