File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 5
5
"allowUnreachableCode" : false ,
6
6
"allowUnusedLabels" : false ,
7
7
"alwaysStrict" : true ,
8
- "baseUrl" : " lib/node_modules" ,
8
+ "baseUrl" : " ./../../ lib/node_modules" ,
9
9
"checkJs" : true ,
10
10
"forceConsistentCasingInFileNames" : true ,
11
11
"keyofStringsOnly" : false ,
30
30
"strictNullChecks" : true ,
31
31
"suppressExcessPropertyErrors" : false ,
32
32
"suppressImplicitAnyIndexErrors" : false ,
33
- "typeRoots" : [ " ." ],
33
+ "typeRoots" : [ " ./../../ " ],
34
34
"types" : []
35
35
},
36
36
"include" : [
Original file line number Diff line number Diff line change @@ -44,16 +44,22 @@ TYPEDOC_HTML ?= $(TYPEDOC_HTML_OUT)/index.html
44
44
45
45
# Define command-line options to be used when invoking the TypeDoc executable to generate HTML documentation:
46
46
TYPEDOC_HTML_FLAGS ?= \
47
+ --mode modules \
48
+ --target es6 \
49
+ --module commonjs \
47
50
--options $(TYPEDOC_CONF ) \
48
51
--tsconfig $(TYPEDOC_TSCONFIG ) \
52
+ --ignoreCompilerErrors \
49
53
--excludeExternals \
50
54
--excludePrivate \
51
55
--excludeProtected \
56
+ --includeDeclarations \
52
57
--exclude '{**/*test*,**/test*.ts,**/*.js,**/*test.ts}' \
53
58
--name stdlib \
54
59
--theme $(CONFIG_DIR ) /typedoc/theme/ \
55
60
--hideGenerator \
56
61
--readme $(CONFIG_DIR ) /typedoc/index.md \
62
+ --gaID 'UA-105890493-1' \
57
63
--out $(TYPEDOC_HTML_OUT )
58
64
59
65
# Define command-line options to be used when invoking the TypeDoc executable to generate TypeDoc JSON:
@@ -64,6 +70,7 @@ TYPEDOC_JSON_FLAGS ?= \
64
70
--excludePrivate \
65
71
--excludeProtected \
66
72
--exclude '{**/*test*,**/test*.ts,**/*.js,**/*test.ts}' \
73
+ --packages $(SRC_DIR ) \
67
74
--name stdlib \
68
75
--json $(TYPEDOC_JSON )
69
76
You can’t perform that action at this time.
0 commit comments