-
Notifications
You must be signed in to change notification settings - Fork 2
/
jsdoc.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"source": {
"include": [
"server",
"server/validation",
"server/routes",
"server/models",
"server/middleware",
"server/database",
"server/socket",
"client",
"client/src",
"client/src/Shared",
"client/src/Shared/Logo",
"client/src/Shared/Components",
"client/src/Shared/Components/Modal",
"client/src/Shared/Validation",
"client/src/Pages",
"client/src/Pages/SharedComponents",
"client/src/Hooks",
"client/src/Context",
"client/src/NoteComponents",
"client/src/NoteComponents/media",
"client/src/NoteComponents/palette"
],
"includePattern": ".js$",
"excludePattern": "(docs|node_modules/|server/node_modules/|client/node_modules/|client/build/)"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"recurse": false,
"destination": "../react-notes-docs/",
"readme": "./README.md"
}
}