-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.conf.json
More file actions
37 lines (37 loc) · 990 Bytes
/
jsdoc.conf.json
File metadata and controls
37 lines (37 loc) · 990 Bytes
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
{
"source": {
"include": ["./src"],
"exclude": ["./node_modules"],
"includePattern": "\\.(jsx|js|ts|tsx|njk)$",
"excludePattern": "(node_modules/|docs)"
},
"tags": {
"allowUnknownTags": ["optional"]
},
"typescript": {
"moduleRoot": "./src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"baseUrl": ".",
"allowJs": true,
"noEmit": true
},
"opts": {
"encoding": "utf8",
"destination": "docs/",
"readme": "readme.md",
"recurse": true,
"verbose": true,
"template": "./node_modules/better-docs"
},
"plugins": ["plugins/markdown", "node_modules/better-docs/typescript", "node_modules/better-docs/category"],
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"search": true
}
}