@@ -31,6 +31,8 @@ Options:
31
31
[boolean] [default: true]
32
32
--markdown-toc-max-depth specifies the max depth of the table of contents in markdown output
33
33
[number] [default: 6]
34
+ --babel path to babelrc or babel.options.js to override
35
+ default babel config [string] [Standard: null]
34
36
--shallow shallow mode turns off dependency resolution, only
35
37
processing the specified files (or the main script
36
38
specified in package.json)
@@ -40,6 +42,9 @@ Options:
40
42
--no-package, --np dont find and use package.json for project-
41
43
configuration option defaults
42
44
[boolean] [default: false]
45
+ --external a string / glob match pattern that defines which
46
+ external modules will be whitelisted and included
47
+ in the generated documentation. [Standard: null]
43
48
--require-extension, --re additional extensions to include in require() and
44
49
import's search algorithm.For instance, adding .es5
45
50
would allow require("adder") to find "adder.es5"
@@ -58,8 +63,10 @@ Options:
58
63
[boolean] [default: false]
59
64
--sort-order The order to sort the documentation, may be
60
65
specified multiple times
61
- [choices: "source", "alpha", "kind" ]
66
+ [choices: "source", "alpha"]
62
67
[default: "source"]
68
+ --resolve Dependency resolution algorithm.
69
+ [choices: "browser", "node"] [Standard: "browser"]
63
70
--output, -o output location. omit for stdout, otherwise is a
64
71
filename for single-file outputs and a directory
65
72
name for multi-file outputs like html
0 commit comments