Has anybody seen this issue before? This suddenly...
# help
p
Has anybody seen this issue before? This suddenly started happening after installing in my existing project and also in a fresh sst project using Typescript. Error when running `npx sst start`:
Copy code
node_modules/@types/node/child_process.d.ts:267:18 - error TS2304: Cannot find name 'AbortSignal'.
I had installed TypeORM CLI which I’m guessing does some wonky stuff with Typescript, but I can’t seem to get back to a working state now, even after uninstalling the global packages
ö
Hello Patrick
What is the version of NodeJS that u r using
As well as types/node
Because I just checked the node documentation, and it is a recent addition: https://nodejs.org/api/globals.html#class-abortsignal it is added in v15.0.0 and v.14.17.0
I just faced the same lol
f
I will let @thdxr chime in when he’s around. He’s our TS export 😁
ö
maybe adding
skipLibCheck: true
can help
p
@Ömer Toraman - I’m on node v14.18.0. That might explain it
I didn’t update node though… odd. I will try to downgrade and see what happens
ö
I think ur node version is fine. But ensure that ur @types/node is not looking for th elatest as well
p
Yeah it ended up being the wrong version of @types/node. 👍