From d359789c529d3c7b5fab5471309eaa4b75fc0bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 16 Apr 2020 23:40:29 +0200 Subject: feat: support Deno namespace in Worker API (#4784) --- cli/js/compiler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/js/compiler.ts') diff --git a/cli/js/compiler.ts b/cli/js/compiler.ts index b3cd3a481..91653a8e4 100644 --- a/cli/js/compiler.ts +++ b/cli/js/compiler.ts @@ -391,12 +391,12 @@ async function wasmCompilerOnMessage({ } function bootstrapTsCompilerRuntime(): void { - bootstrapWorkerRuntime("TS"); + bootstrapWorkerRuntime("TS", false); globalThis.onmessage = tsCompilerOnMessage; } function bootstrapWasmCompilerRuntime(): void { - bootstrapWorkerRuntime("WASM"); + bootstrapWorkerRuntime("WASM", false); globalThis.onmessage = wasmCompilerOnMessage; } -- cgit v1.2.3