We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a2d58 commit 774aa36Copy full SHA for 774aa36
.config/typedoc.json
@@ -8,7 +8,8 @@
8
"SORT_STRATEGIES",
9
"_ModelToObject"
10
],
11
- "entryPoints": ["../src/index.ts"],
+ "entryPoints": ["../src"],
12
+ "entryPointStrategy": "Resolve",
13
"excludeExternals": true,
14
"excludePrivate": true,
15
"excludeInternal": true,
scripts/generate_options_schema.js
@@ -73,6 +73,16 @@ addTypeDocOptions({
73
/** @type {import("../dist").MapDeclarationOption} */ (
74
option
75
).defaultValue;
76
+ if (!data.enum.includes(data.default)) {
77
+ for (const [k, v] of map instanceof Map
78
+ ? map
79
+ : Object.entries(map)) {
80
+ if (v === data.default) {
81
+ data.default = k;
82
+ break;
83
+ }
84
85
86
break;
87
}
88
case ParameterType.Flags: {
0 commit comments