diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 38db7d13f..f1cf67ac4 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -334,12 +334,14 @@ pub fn get_types(unstable: bool) -> String { crate::tsc::DENO_WEBSTORAGE_LIB, crate::tsc::DENO_CRYPTO_LIB, crate::tsc::DENO_BROADCAST_CHANNEL_LIB, + crate::tsc::DENO_NET_LIB, crate::tsc::SHARED_GLOBALS_LIB, crate::tsc::WINDOW_LIB, ]; if unstable { types.push(crate::tsc::UNSTABLE_NS_LIB); + types.push(crate::tsc::DENO_NET_UNSTABLE_LIB); } types.join("\n") |