Vue JSX error - ts2607 and ts2786
The code works as usual, but it is always warning these errors like shown in this image:
https://ibb.co/Fg6WFgZ
How could I solve it?
Replies (1)
Hi Fernando,
Thank you for your feedback.
It looks like these errors are related to fullcalendar dependencies, we will check it and fix them in upcoming releases.
As a temporary solution:
1)Remove the dependencies below from your package.json.
"@fullcalendar/core": "^5.9.0",
"@fullcalendar/daygrid": "^5.9.0",
"@fullcalendar/interaction": "^5.9.0",
"@fullcalendar/list": "^5.9.0",
"@fullcalendar/timegrid": "^5.9.0",
"@fullcalendar/vue3": "^5.9.0",
2)Delete the node_modules folder.
3)Install dependencies with yarn or npm install
4)Restart your editor.