-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathtypedoc.json
38 lines (38 loc) · 1.1 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
{
"name": "fluent.js",
"entryPointStrategy": "packages",
"entryPoints": [
"./fluent-bundle",
"./fluent-dedent",
"./fluent-dom",
"./fluent-langneg",
"./fluent-react",
"./fluent-sequence",
"./fluent-syntax"
],
"hideGenerator": true,
"highlightLanguages": ["html", "javascript", "jsx", "typescript"],
"navigation": {
"includeCategories": true,
"includeFolders": false
},
"navigationLinks": {
"Project Fluent": "https://projectfluent.org/",
"GitHub": "https://github.com/projectfluent/fluent.js"
},
"out": "./html",
"packageOptions": {
"entryPoints": ["src/index.ts"],
"includeVersion": true
},
"plugin": ["typedoc-plugin-redirect"],
"redirects": {
"bundle/index.html": "modules/_fluent_bundle.html",
"dedent/index.html": "modules/_fluent_dedent.html",
"dom/index.html": "modules/_fluent_dom.html",
"langneg/index.html": "modules/_fluent_langneg.html",
"react/index.html": "modules/_fluent_react.html",
"sequence/index.html": "modules/_fluent_sequence.html",
"syntax/index.html": "modules/_fluent_syntax.html"
}
}