forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.esdoc.json
68 lines (68 loc) · 1.91 KB
/
.esdoc.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
{
"source": "./lib",
"destination": "./esdoc",
"includes": ["\\.js$"],
"plugins": [
{
"name": "esdoc-inject-style-plugin",
"option": {
"enable": true,
"styles": [
"./docs/css/style.css",
"./docs/css/theme.css"
]
}
},
{
"name": "esdoc-standard-plugin",
"option": {
"lint": { "enable": true },
"coverage": { "enable": false },
"accessor": {
"access": ["public"],
"autoPrivate": true
},
"undocumentIdentifier": { "enable": false },
"unexportedIdentifier": { "enable": true },
"typeInference": { "enable": true },
"brand": {
"logo": "./docs/images/logo-small.png",
"title": "Sequelize",
"description": "Node.js ORM for PostgreSQL, MySQL, SQLite and MSSQL",
"repository": "https://github.com/sequelize/sequelize",
"site": "https://sequelize.org/master/"
},
"manual": {
"index": "./docs/index.md",
"globalIndex": true,
"asset": "./docs/images",
"files": [
"./docs/getting-started.md",
"./docs/dialects.md",
"./docs/data-types.md",
"./docs/models-definition.md",
"./docs/models-usage.md",
"./docs/hooks.md",
"./docs/querying.md",
"./docs/instances.md",
"./docs/associations.md",
"./docs/transactions.md",
"./docs/scopes.md",
"./docs/raw-queries.md",
"./docs/read-replication.md",
"./docs/migrations.md",
"./docs/resources.md",
"./docs/typescript.md",
"./docs/upgrade-to-v5.md",
"./docs/legacy.md",
"./docs/whos-using.md",
"./docs/legal.md"
]
}
}
},
{
"name": "./docs/plugins/group-data-types"
}
]
}