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
- My account is blocked so please check an...
My account is blocked so please unblock my account because all the apps are closed due to which it is causing a lot of problems
- Applying free credits on Github Student ...
So this post is kind of related to my old post where i was charged 15usd by mistake. This happens when you are trying to apply free credits you got from somewh...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...