I'm having some issues with properly compiling my typescript when I attempt to use web workers.
I have a worker defined like this:
onmessage = (event:MessageEvent) => {
var files:FileList = event.data;
for (var i = 0; i < files.length; i++) {
postMessage(files[i]);
}
};
In another part of my application i'm using the webpack worker loader to load my worker like this: let Worker = require('worker!../../../workers/uploader/main');
I'm however having some issues with making the typescript declarations not yell at me when the application has to be transpiled. According to my research i have to add another standard lib to my tsconfig file to expose the global variables the worker need access to. These i have specified like so:
{
"compilerOptions": {
"lib": [
"webworker",
"es6",
"dom"
]
}
}
Now, when i run webpack to have it build everything i get a bunch of errors like these: C:/Users/hanse/Documents/Frontend/node_modules/typescript/lib/lib.webworker.d.ts:1195:13
Subsequent variable declarations must have the same type. Variable 'navigator' must be of type 'Navigator', but here has type 'WorkerNavigator'.
So my question is: How do I specify so the webworker uses the lib.webworker.d.ts definitions and everything else follows the normal definitions?
In your
tsconfig.json
file, incompilerOptions
set this:Web workers can't access to DOM,
window
,document
andparent
objects (full list supported objects here: Functions and classes available to Web Workers); thedom
lib of TypeScript is not compatible and redefine some elements that are define inlib.webworker.d.ts
rasmus-hansen's solution doesn't, in its base form, allow workers to import modules themselves. After some more digging around, I found that the example in https://github.com/Qwaz/webworker-with-typescript does. I tested the version in
worker-loader
, and was able to trivially add a simple module than can be imported by bothworker.ts
andentry.ts
.Using batressc' answer i have managed to actually get passing messages back and forth working, in a somewhat nice manner.
Adding to his answer with the libs, the typescript code also needs some nudges to get working.
First, create a file to make the file-loader coorperate with you when importing. I have a file named file-loader.d.ts with the following contents:
Next, in your main.ts import the worker using the fileloader:
This
workerPath
can then be used to create the actual worker:Next, create the actual worker file,
test.worker.ts
, with the following content:You can then send messages back and forth in the main.ts file:
I have gathered everything in a github repository, if someone needs to the full perspective to get everything working: https://github.com/zlepper/typescript-webworker This repository also have a webpack.config.js to show how webpack could be configured for this.