I don't understand. Normally, TypeScript is installed as a dev dependency to a Node.js project. Why would you install TypeScript globally?
That is ... the normal sequence, which I do in projects, and which I described in my book on TypeScript, is: npm init -y npm install typescript --save-dev # create a tsconfig.json file npm install .... other dependencies But, I don't install any Node.js anything globally. Yes, I've seen lots of tutorials talk about doing so. I don't understand that myself, but maybe I'm missing something. + David Herron On Mon, Sep 23, 2024 at 9:29 PM Kenneth Wolcott <[email protected]> wrote: > Hi; > > The typescript port depends on an unsupported (upstream) version of nodejs. > > Is this something that upstream controls? > > If not, is it possible to bump the version of nodejs typescript depends on? > > I'm looking at using some features of nodejs22 can that conflicts... > > so I have deactivated nodejs16... > > Thanks, > Ken Wolcott >
