diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-08-05 04:23:41 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-05 07:23:41 -0400 |
commit | ddee2dff14772ade16e282ad18eda6f5054ce94e (patch) | |
tree | 473cdf935b8d0254a7ab8e0c89fd407201793ac6 /js/compiler.ts | |
parent | aaa7a3eac4df0de9a93dc8fc4717d38212a3de5b (diff) |
Provide option to delete Deno namespace in worker (#2717)
Diffstat (limited to 'js/compiler.ts')
-rw-r--r-- | js/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index 4203f753b..6bda5a1ec 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -25,7 +25,7 @@ const console = new Console(core.print); window.console = console; window.workerMain = workerMain; export default function denoMain(): void { - os.start("TS"); + os.start(true, "TS"); } const ASSETS = "$asset$"; |