-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathtypedoc.json
More file actions
26 lines (26 loc) · 696 Bytes
/
typedoc.json
File metadata and controls
26 lines (26 loc) · 696 Bytes
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
{
"name": "Data-Forge",
"readme": "none",
"mode": "file",
"exclude": [
"**/node_modules/**/*",
"**/src/lib/iterables/*",
"**/src/lib/iterators/*",
"**/src/test/**/*"
],
"theme": "default",
"ignoreCompilerErrors": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "ES5",
"moduleResolution": "node",
"preserveConstEnums": true,
"stripInternal": true,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"module": "commonjs",
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeNotExported": true
}