-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsdoc.json
112 lines (112 loc) · 2.8 KB
/
jsdoc.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"source": {
"include": ["src", "package.json", "README.md"],
"includePattern": ".+\\.(m|c)?js(doc|x)?$",
"excludePattern": "(node_modules/|docs)"
},
"opts": {
"encoding": "utf8",
"readme": "./README.md",
"destination": "./docs/",
"recurse": true,
"verbose": true,
"template": "./node_modules/clean-jsdoc-theme",
"theme_opts": {
"default_theme": "dark",
"homepageTitle": "OMDb Search React App - Documentation",
"title": "OMDb Search Docs",
"meta": [
{
"name": "description",
"content": "OMDb Search React App"
},
{
"name": "keywords",
"content": "OMDb,OMDb API,Search,React,Application,Documentation"
},
{
"name": "author",
"content": "@davorpatech"
}
],
"menu": [
{
"title": "Home",
"link": "./index.html",
"class": "menu-item",
"id": "home"
},
{
"title": "GitHub repo",
"link": "https://github.com/davorpa/omdb-search-react-app",
"target": "_blank",
"class": "menu-item",
"id": "repository"
},
{
"title": "App",
"link": "https://davorpa.github.io/omdb-search-react-app",
"target": "_blank",
"class": "menu-item",
"id": "webapp"
}
],
"footer": "<footer class=\"footer-wrapper\">Made with 💖 by @davorpatech</footer>",
"sections": [
"Classes",
"Modules",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces",
"Global"
],
"search": true,
"codepen": {
"enable_for": ["examples"],
"options": {
"js_external": "https://code.jquery.com/jquery-3.6.3.min.js",
"js_pre_processor": "babel"
}
},
"static_dir": ["./screenshot.png", "target/lighthouse/"],
"create_style": ".footer-wrapper { text-align: center; }",
"add_style_path": [],
"include_css": [],
"add_scripts": "",
"add_script_path": [],
"include_js": [],
"exclude_inherited": false,
"displayModuleHeader": true,
"includeFilesListInHomepage": true
}
},
"plugins": [
"plugins/markdown",
"./src-docs/plugins/resolve-module-type-import.cjs"
],
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"templates": {
"search": true,
"cleverLinks": true,
"monospaceLinks": true,
"default": {
"outputSourceFiles": true,
"includeDate": true,
"useLongnameInNav": true
}
},
"markdown": {
"parser": "gfm",
"hardwrap": true,
"idInHeadings": true
},
"typescript": {
"moduleRoot": "src"
}
}