timotejroiko / net-ipc

A simple node.js IPC client-server with no dependencies
MIT License
29 stars 6 forks source link

Typescript missing ErrorEvent type #1

Closed vascobotelho closed 2 years ago

vascobotelho commented 2 years ago

In the index.d.ts file, the ErrorEvent type is missing, and it's giving me this error.

image

timotejroiko commented 2 years ago

ErrorEvent is a built in type in the DOM lib. Did you disable the DOM lib or enabled the noLib option in your compiler?

vascobotelho commented 2 years ago

I have lib: ["ES2021"]

timotejroiko commented 2 years ago

try with lib: ["ES2021", "DOM"]

vascobotelho commented 2 years ago

It worked, thank you.