nada virinchi
nada virinchi

Reputation: 55

"[INFO]" 10:55:55 ts-node-dev ver. 1.1.8 (using ts-node ver. 9.1.1, typescript ver. 4.5.4)

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

Answers (1)

Tanjin Alam
Tanjin Alam

Reputation: 2456

update to latest version

npm install -g ts-node@latest
npm install ts-node-dev@latest

Upvotes: 1

Related Questions