-
Notifications
You must be signed in to change notification settings - Fork 44
/
jsdoc.config.json
32 lines (32 loc) · 1.04 KB
/
jsdoc.config.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
{
"plugins": [
"plugins/markdown"
],
"recurseDepth": 10,
"source": {
"include": ["src/typescript/core_api.js",
"src/typescript/extractor/extractor.js",
"src/typescript/display/plot.js",
"src/typescript/machinelearning/tfjs_input_extractor.js",
"src/typescript/machinelearning/tfjs_models.js"
],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": false,
"systemName": "Essentia.js",
"systemSummary": "JavaScript library for Music/Audio analysis, powered by Essentia WebAssembly backend.",
"systemColor": "black",
"footer": "https://essentia.upf.edu",
"copyright": "Copyright (C) 2006-2021 Music Technology Group - Universitat Pompeu Fabra",
"includeDate": false,
"search": false
}
}