79314982

Date: 2024-12-29 04:56:17
Score: 1
Natty:
Report link

I have had the same issue.
Check out what vscode version cursor is using from the about menu mine uses 1.93.1 while the hello world example auto-generated defaulted to 1.96.0
The solution was to downgrade the following in package.json and npm install again

...
  "engines": {
    "vscode": "^1.93.0"
  },
...
"devDependencies": {
    "@types/vscode": "^1.93.0",
...

enter image description here

related:

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yorai Levi