summaryrefslogtreecommitdiff
path: root/cli/compilers/mod.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-29 18:54:23 +0100
committerGitHub <noreply@github.com>2020-01-29 18:54:23 +0100
commit161adfc51b750a7c8c62a898ea9948c2ad5b6cd9 (patch)
tree6d53db2a4acd30207372f665a3ba463e26db6fcf /cli/compilers/mod.rs
parentd14864c57cebbd1d5bc18b8a9e05e522eb9987b0 (diff)
workers: proper TS libs, more spec-compliant APIs (#3812)
* split lib.deno_main.d.ts into: - lib.deno.shared_globals.d.ts - lib.deno.window.d.ts - lib.deno.worker.d.ts * remove no longer used libs: - lib.deno_main.d.ts - lib.deno_worker.d.ts * change module loading to use proper TS library for compilation * align to Worker API spec: - Worker.terminate() - self.close() - self.name
Diffstat (limited to 'cli/compilers/mod.rs')
-rw-r--r--cli/compilers/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/compilers/mod.rs b/cli/compilers/mod.rs
index f4aac3681..a2abbe2aa 100644
--- a/cli/compilers/mod.rs
+++ b/cli/compilers/mod.rs
@@ -13,6 +13,7 @@ pub use js::JsCompiler;
pub use json::JsonCompiler;
pub use ts::runtime_compile_async;
pub use ts::runtime_transpile_async;
+pub use ts::TargetLib;
pub use ts::TsCompiler;
pub use wasm::WasmCompiler;