diff options
Diffstat (limited to 'cli/js/compiler_host.ts')
-rw-r--r-- | cli/js/compiler_host.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/js/compiler_host.ts b/cli/js/compiler_host.ts index b89c7163c..413ffa6e1 100644 --- a/cli/js/compiler_host.ts +++ b/cli/js/compiler_host.ts @@ -165,8 +165,7 @@ export class Host implements ts.CompilerHost { /* Deno specific APIs */ /** Provides the `ts.HostCompiler` interface for Deno. */ - constructor(options: CompilerHostOptions) { - const { bundle = false, target, writeFile } = options; + constructor({ bundle = false, target, writeFile }: CompilerHostOptions) { this._target = target; this._writeFile = writeFile; if (bundle) { |