File tree Expand file tree Collapse file tree 5 files changed +160
-104
lines changed Expand file tree Collapse file tree 5 files changed +160
-104
lines changed Original file line number Diff line number Diff line change 55 "scripts" : {
66 "start" : " pnpm docs:watch" ,
77 "debug" : " npx html-pages ./dist --no-cache" ,
8- "docs:collect" : " typedoc --options ./typedoc.config.json " ,
9- "docs:watch" : " typedoc --options ./typedoc.config.json --watch"
8+ "docs:collect" : " typedoc --options ./typedoc.config.mjs " ,
9+ "docs:watch" : " typedoc --options ./typedoc.config.mjs --watch"
1010 },
1111 "devDependencies" : {
12+ "markdown-it-footnote" : " ^4.0.0" ,
1213 "typedoc" : " ^0.28.7" ,
1314 "typedoc-github-theme" : " ^0.3.0" ,
1415 "typedoc-github-wiki-theme" : " ^2.1.0" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import { createRequire } from 'node:module' ;
2+
3+ const require = createRequire ( import . meta. url ) ;
4+
5+ const footnotes = require ( 'markdown-it-footnote' ) ;
6+
7+ export default {
8+ tsconfig : '../reactiveweb/tsconfig.json' ,
9+ markdownItLoader ( parser ) {
10+ parser . use ( footnotes ) ;
11+ } ,
12+ cleanOutputDir : true ,
13+ compilerOptions : {
14+ noEmitOnError : false ,
15+ } ,
16+ entryPoints : [
17+ '../reactiveweb/src/*' ,
18+ '../reactiveweb/src/resource/service.ts' ,
19+ '../reactiveweb/src/resource/modifier/index.ts' ,
20+ ] ,
21+ navigationLinks : {
22+ GitHub : 'https://github.com/universal-ember/reactiveweb' ,
23+ } ,
24+ readme : './README.md' ,
25+ exclude : [ '../reactiveweb/src/get-promise-state.typetest.ts' ] ,
26+ out : 'dist' ,
27+ emit : 'docs' ,
28+ pretty : true ,
29+ skipErrorChecking : true ,
30+ highlightLanguages : [
31+ 'bash' ,
32+ 'css' ,
33+ 'html' ,
34+ 'javascript' ,
35+ 'typescript' ,
36+ 'glimmer-js' ,
37+ 'glimmer-ts' ,
38+ 'json' ,
39+ 'jsonc' ,
40+ ] ,
41+ excludePrivate : true ,
42+ excludeProtected : false ,
43+ excludeExternals : true ,
44+ searchInComments : true ,
45+ disableSources : false ,
46+ categorizeByGroup : false ,
47+ plugin : [ 'typedoc-github-theme' ] ,
48+ } ;
You can’t perform that action at this time.
0 commit comments