diff options
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 6d2e297db..9d7b2a5ff 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -41,6 +41,8 @@ pub static DENO_WEBSOCKET_LIB: &str = pub static DENO_WEBSTORAGE_LIB: &str = include_str!(env!("DENO_WEBSTORAGE_LIB_PATH")); pub static DENO_CRYPTO_LIB: &str = include_str!(env!("DENO_CRYPTO_LIB_PATH")); +pub static DENO_BROADCAST_CHANNEL_LIB: &str = + include_str!(env!("DENO_BROADCAST_CHANNEL_LIB_PATH")); pub static SHARED_GLOBALS_LIB: &str = include_str!("dts/lib.deno.shared_globals.d.ts"); pub static WINDOW_LIB: &str = include_str!("dts/lib.deno.window.d.ts"); @@ -71,6 +73,7 @@ lazy_static::lazy_static! { ("lib.es2018.full.d.ts", inc!("lib.es2018.full.d.ts")), ("lib.es2019.full.d.ts", inc!("lib.es2019.full.d.ts")), ("lib.es2020.full.d.ts", inc!("lib.es2020.full.d.ts")), + ("lib.es2021.full.d.ts", inc!("lib.es2021.full.d.ts")), ("lib.esnext.full.d.ts", inc!("lib.esnext.full.d.ts")), ("lib.scripthost.d.ts", inc!("lib.scripthost.d.ts")), ("lib.webworker.d.ts", inc!("lib.webworker.d.ts")), |