-
Notifications
You must be signed in to change notification settings - Fork 299
/
typedoc-tsconfig.json
41 lines (41 loc) · 1.16 KB
/
typedoc-tsconfig.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
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"allowJs": true,
"resolveJsonModule": true,
"paths": {
"*": ["node_modules/*"]
}
},
"files": [
"src/adapter/tstype.ts",
"src/controller/controller.ts",
"src/controller/events.ts",
"src/controller/tstype.ts",
"src/controller/model/device.ts",
"src/controller/model/group.ts",
"src/controller/model/endpoint.ts"
],
"typedocOptions": {
"name": "zigbee-herdsman",
"mode": "modules",
"target": "es6",
"module": "commonjs",
"readme": "none",
"excludePrivate": true,
"excludeProtected": true,
"excludeNotExported": false,
"excludeExternals": true,
"sourcefile-url-prefix": "https://github.com/Koenkk/zigbee-herdsman/blob/master/src/",
"out": "./docs/api/",
"logger": "console",
"ignoreCompilerErrors": true
}
}