This is not the tsc command you are looking for

vinayak00017

Vinayak

Posted on January 20, 2024

This is not the tsc command you are looking for

So, from what I have experienced, this problem occurs when you install typescript like this

npm install -g tsc             #don't do this
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

I hope it helped :)

💖 💪 🙅 🚩
vinayak00017
Vinayak

Posted on January 20, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related