Add 'webworker' lib into the TypeScript's compilerOptions

This commit is contained in:
Frederic Junod
2019-05-16 09:49:29 +02:00
parent b7b37f9548
commit bb022050ed
2 changed files with 1 additions and 2 deletions

View File

@@ -6,7 +6,6 @@ import {VERSION} from '../util';
onmessage = event => {
console.log('version worker received message:', event.data); // eslint-disable-line
// @ts-ignore
postMessage(`version: ${VERSION}`);
};