1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/tests/testdata/compile/workers/not_in_module_map.ts

12 lines
289 B
TypeScript
Raw Normal View History

// This time ./worker.ts is not in the module map, so the worker
// initialization will fail unless worker.js is passed as a side module.
const worker = new Worker(
new URL("./worker.ts", import.meta.url),
{ type: "module" },
);
setTimeout(() => {
worker.postMessage(42);
}, 500);