Closed brenc closed 6 months ago
Just installed the client. VS Code can't find TS types probably because in package.json this field is incorrect: "types": "src/mistralai.d.ts" when it should be "types": "src/client.d.ts".
package.json
"types": "src/mistralai.d.ts"
"types": "src/client.d.ts"
Ahh, I see a PR to fix this has been merged but a new release hasn't been issued yet.
Hi @brenc Have pushed the new version of the client. let me know if this fixing your issue!
Just installed the client. VS Code can't find TS types probably because in
package.json
this field is incorrect:"types": "src/mistralai.d.ts"
when it should be"types": "src/client.d.ts"
.