forked from rdkcentral/Lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.typedoc.json
35 lines (35 loc) · 1.45 KB
/
tsconfig.typedoc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"extends": "./tsconfig.json",
"include": ["**/*.d.ts"],
"exclude": ["types"],
"typedocOptions": {
"entryPoints": ["index.typedoc.d.ts"],
"out": "typedocs",
"entryPointStrategy": "expand",
"intentionallyNotExported": [
"src/components/ListComponent.d.mts:ListItems",
"src/internalTypes.d.mts:ValidRef",
"src/tree/Element.d.mts:InlineElement",
"src/internalTypes.d.mts:Documentation",
"src/application/Component.d.mts:IsCustomKeyHandlersAugmented",
"src/application/Component.d.mts:__PassSignals",
"src/internalTypes.d.mts:SignalMapType",
"src/application/Component.d.mts:__Signals",
"src/application/Component.d.mts:TemplateRequireType",
"src/application/Component.d.mts:CompileComponentTemplateSpecType",
"src/internalTypes.d.mts:TextureType",
"src/tree/Element.d.mts:CompileElementTemplateSpecType",
"src/tree/Element.d.mts:SmoothTemplate",
"src/tree/Element.d.mts:TransitionsTemplate",
"src/internalTypes.d.mts:HandlerReturnType",
"src/tree/Element.d.mts:TemplateSpecRefs",
"src/tree/Element.d.mts:TemplateSpecTags",
"src/animation/AnimationSettings.d.mts:AnimationForceLiteral",
"src/animation/AnimationSettings.d.mts:AnimationForceType",
"src/internalTypes.d.mts:HandlerParameters",
"src/internalTypes.d.mts:EventMapType",
"src/tree/Element.d.mts:IsLooseTemplateSpec",
"src/tree/Element.d.mts:RemoveIndex"
]
}
}