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 typescript
npm install -D typescript
I hope it helped :)
Top comments (2)
Nice. you have a spelling mistake of typescript in 3rd line.
oh! thanks for pointing it out.