UNPKG

@ts-bridge/cli

Version:

Bridge the gap between ES modules and CommonJS modules with an easy-to-use alternative to `tsc`.

7 lines (6 loc) 235 B
import { workerData, parentPort, isMainThread } from 'worker_threads'; import { main } from './worker-utils.js'; if (isMainThread || !parentPort) { throw new Error('This module must be run as a worker.'); } await main(workerData);