forked from finos/legend-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
49 lines (49 loc) · 1.42 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://typedoc.org/schema.json",
"name": "Legend Studio API Documentation",
"hideGenerator": true,
"gitRemote": "origin",
"gitRevision": "master",
"includeVersion": true,
"out": "build/docs",
"entryPoints": ["packages/*"],
"entryPointStrategy": "packages",
"exclude": [
// NOTE: this uses `minimatch` pattern
"**/__tests__/**",
"**/__mocks__/**",
"**/node_modules/**",
"**/packages/babel-preset",
"**/packages/eslint-plugin",
"**/packages/stylelint-config",
"**/packages/legend-dev-utils",
"**/packages/legend-manual-tests", // to be removed post https://github.com/finos/legend-studio/issues/820
"**/packages/legend-art",
"**/packages/legend-application-*",
"**/packages/legend-extension-*"
],
"plugin": ["./scripts/typedoc-theme/lib/index.js"],
"intentionallyNotExported": [],
"excludeExternals": false,
"excludeInternal": true,
"excludePrivate": true,
"excludeNotDocumented": true,
"validation": {
"notExported": false,
"invalidLink": true,
"notDocumented": false
},
// NOTE: to be updated when we structure the doc better
"readme": "./website/api.md",
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
// "@internal": false,
},
"theme": "legend",
"customCss": "./website/legend-typedoc-theme.css",
"logLevel": "Verbose",
"treatWarningsAsErrors": true
}