diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-06 12:10:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 12:10:19 +1100 |
commit | 5f7c80986fd9cff6a65d4e419fc2972abe992ccf (patch) | |
tree | 8bbee5a70b33539edb4c24d349e80f5383d7a79c /cli/module_graph.rs | |
parent | 96e03e0b93bf75035887ce02880b832123e3c86d (diff) |
fix(cli): correct libs sent to tsc for unstable worker (#8260)
Fixes #8257
Diffstat (limited to 'cli/module_graph.rs')
-rw-r--r-- | cli/module_graph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/module_graph.rs b/cli/module_graph.rs index d757aa0a1..7a6d68086 100644 --- a/cli/module_graph.rs +++ b/cli/module_graph.rs @@ -551,7 +551,7 @@ impl Serialize for TypeLib { vec!["deno.window".to_string(), "deno.unstable".to_string()] } TypeLib::UnstableDenoWorker => { - vec!["deno.worker".to_string(), "deno.worker".to_string()] + vec!["deno.worker".to_string(), "deno.unstable".to_string()] } }; Serialize::serialize(&value, serializer) |