@@ -73,47 +73,17 @@ const config: Config = {
7373 {
7474 ...baseTypedocOptions ,
7575 id : 'framework' ,
76- entryPoints : [ './package/src/index.ts' ] ,
76+ entryPoints : [
77+ './package/src/index.ts' ,
78+ './package/src/types/index.ts' ,
79+ './package/src/decorators/index.ts' ,
80+ ] ,
7781 tsconfig : './package/tsconfig.json' ,
7882 readme : './package/README.md' ,
7983 out : 'docs/Documentation' ,
8084 plugin : [ 'typedoc-plugin-mdn-links' ] ,
8185 } ,
8286 ] ,
83- [
84- 'docusaurus-plugin-typedoc' ,
85- {
86- exclude : [
87- '**/node_modules/**' ,
88- '**/*+(index|.test).ts' ,
89- '**/lib/**' ,
90- '**/docs/**' ,
91- '**/{node_modules,test,doc}/**/*' ,
92- 'node_modules/**/*' ,
93- '**/node_modules/**/*' ,
94- ] ,
95- entryPoints : [ '../src/index.ts' , '../src/utilities/index.ts' , '../src/types/**/*.ts' ] ,
96- basePath : '../src' ,
97- name : 'Documentation' ,
98- plugin : [
99- 'typedoc-plugin-inline-sources' ,
100- 'typedoc-plugin-markdown' ,
101- 'typedoc-plugin-mdn-links' ,
102- ] ,
103- out : './docs/Documentation' ,
104- includeVersion : false ,
105- excludePrivate : true ,
106- excludeProtected : true ,
107- readme : 'none' ,
108- tsconfig : '../tsconfig.json' ,
109- disableSources : false ,
110- validation : {
111- notExported : false ,
112- invalidLink : false ,
113- notDocumented : false ,
114- } ,
115- } ,
116- ] ,
11787 ] ,
11888
11989 presets : [
0 commit comments