diff options
author | Liam Murphy <43807659+Liamolucko@users.noreply.github.com> | 2021-02-26 02:24:05 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 16:24:05 +0100 |
commit | cdae4423c27443e0085d59f45eda1c978f186a1c (patch) | |
tree | 74107cebfe5a49a8021ef3fc02c60b30548163be /cli/tools/mod.rs | |
parent | 687ff2ab14d6a735aa5bf0ec57ef00cfe0c04e4b (diff) |
feat(cli/doc): use type definitions "deno doc" if available (#8459)
This commit adds support for type definitions in "deno doc";
with this change "deno doc" is able to leverage the same directives
as TS compiler.
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tools/mod.rs')
-rw-r--r-- | cli/tools/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs index 089232b99..cd00f6a86 100644 --- a/cli/tools/mod.rs +++ b/cli/tools/mod.rs @@ -1,6 +1,7 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. pub mod coverage; +pub mod doc; pub mod fmt; pub mod installer; pub mod lint; |