Reputation: 55
I need to downgrade the version of typescript in that log.
I tried npm uninstall typescript
and npm install [email protected]
still the log in that line shows typescript version 4.5.4, I want it to be 4.2.4
Upvotes: 1
Views: 1636
Reputation: 2456
update to latest version
npm install -g ts-node@latest
npm install ts-node-dev@latest
Upvotes: 1