File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 37
37
"tailwindcss" : " ^1.4.0" ,
38
38
"tailwindcss-dark-mode" : " ^1.1.0" ,
39
39
"traverse" : " ^0.6.6" ,
40
- "typedoc" : " 0.15.0 " ,
40
+ "typedoc" : " ~0.19.2 " ,
41
41
"typescript" : " ^3.7.5" ,
42
42
"use-dark-mode" : " ^2.3.1"
43
43
},
Original file line number Diff line number Diff line change 17
17
18
18
const { readFileSync, unlinkSync } = require ( 'fs' ) ;
19
19
const path = require ( 'path' ) ;
20
- const { Application } = require ( 'typedoc' ) ;
20
+ const { Application, TSConfigReader } = require ( 'typedoc' ) ;
21
21
22
22
const tempOutput = path . resolve ( process . cwd ( ) , 'typedoc.json' ) ;
23
23
const app = new Application ( ) ;
24
+ app . options . addReader ( new TSConfigReader ( ) ) ;
24
25
25
26
module . exports . generateTypedoc = function generateTypedoc ( ) {
26
27
console . log ( path . resolve ( __dirname , '../../tsconfig.json' ) ) ;
You can’t perform that action at this time.
0 commit comments