-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.lib.json
49 lines (49 loc) · 1.24 KB
/
tsconfig.lib.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extends": "./tsconfig.json",
"include": [
"src/components"
],
"compilerOptions": {
"declaration": true,
"outDir": "dist"
},
// Configuration specific for typedoc (generates documentation based on types)
"typedocOptions": {
"entryPoints": [
"src/components/index.ts"
],
"out": "docs",
"readme": "none",
"excludeInternal": true,
"excludeNotDocumented": true,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": false,
"external": true,
"@alpha": false,
"@beta": false
},
"excludeNotDocumentedKinds": [
"Module",
"Namespace",
"Enum",
// "EnumMember", // Not enabled by default
"Variable",
"Function",
"Class",
// "Interface",
"Constructor",
"Property",
"Method",
"CallSignature",
"IndexSignature",
"ConstructorSignature",
"Accessor",
"GetSignature",
"SetSignature",
// "TypeAlias",
"Reference",
]
}
}