Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Oct 15, 2020
1 parent 30e80ef commit 00c3b61
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion cli/dts/lib.deno.window.unstable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, no-var */

/// <reference no-default-lib="true" />
/// <reference lib="deno.shared_globals" />
/// <reference lib="deno.ns.unstable" />
/// <reference lib="deno.shared_globals.unstable" />
4 changes: 2 additions & 2 deletions cli/dts/lib.deno.worker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any */

/// <reference no-default-lib="true" />
/// <reference lib="deno.ns" />
/// <reference lib="deno.shared_globals" />
/// <reference lib="deno.ns.unstable" />
/// <reference lib="deno.shared_globals.unstable" />
/// <reference lib="esnext" />

declare class WorkerGlobalScope {
Expand Down
2 changes: 1 addition & 1 deletion cli/tsc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ pub async fn runtime_bundle(
} else {
lib.push("deno.window".to_string());
if unstable {
lib.push("deno.window.unstable");
lib.push("deno.window.unstable".to_string());
}
}

Expand Down

0 comments on commit 00c3b61

Please sign in to comment.