I am getting typescript error with web worker APIs.
TS2339 [ERROR]: Property 'postMessage' does not exist on type 'Window & typeof globalThis'.
self.postMessage(data)
~~~~~~~~~~~
The solution I found that works is adding /// <reference lib="webworker" /> to the top of the file, but this will cause bannedTripleSlashDirectives error during jsr publish
I am getting typescript error with web worker APIs.
The solution I found that works is adding
/// <reference lib="webworker" />
to the top of the file, but this will causebannedTripleSlashDirectives
error during jsr publish