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
- Function permissions
In my app I have a CreateUser flow which makes several documents and at the end uses the functions.createExecution() to call a server-side function to create a ...
- Google Auth not working in a React App
Authentication with Google has failed. It redirects back to the signin route in React. Attached screenshots for configuration of Google console and Appwrite Go...
- How to display images from storage
I tried the link above, but it returns the error “`Please upgrade to a higher plan.`” I don’t need Transformations at the moment, I just want to display the ima...