diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-01-25 06:15:01 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-01-24 14:15:01 -0500 |
commit | 950537e8ef6e54c409a7fcafa0b087e68988d9ef (patch) | |
tree | 46162f11adc5a6e71c4c681ffe7949ad7bc98fb8 /deno_typescript | |
parent | 8bc639a23e141d350e35ea112a4a9be2ea536fe6 (diff) |
Break out runtime lib to main and worker (#3771)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'deno_typescript')
-rw-r--r-- | deno_typescript/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deno_typescript/lib.rs b/deno_typescript/lib.rs index 2d908cf8b..8133a2886 100644 --- a/deno_typescript/lib.rs +++ b/deno_typescript/lib.rs @@ -280,6 +280,7 @@ pub fn get_asset(name: &str) -> Option<&'static str> { "lib.esnext.bigint.d.ts" => inc!("lib.esnext.bigint.d.ts"), "lib.esnext.intl.d.ts" => inc!("lib.esnext.intl.d.ts"), "lib.esnext.symbol.d.ts" => inc!("lib.esnext.symbol.d.ts"), + "lib.webworker.d.ts" => inc!("lib.webworker.d.ts"), _ => None, } } |