So, from what I have experienced, this problem occurs when you install typescript like this
npm install -g tsc #don't do this
To solve this error, try to run this command in the terminal:
npm uninstall -g typescript
npm uninstall - g tsc
npm install -g typscript
npm install -D typescript
I hope it helped :)
Top comments (0)