This commit is contained in:
MultiMote 2024-11-19 23:36:59 +03:00
parent c35cfe7370
commit 80ddc3d0a1
3 changed files with 6 additions and 1 deletions

@ -44,7 +44,7 @@ jobs:
run: yarn install
- name: Install typedoc
run: yarn add -D typedoc@0.26.11
run: yarn add -D typedoc@0.26.11 typedoc-plugin-include-example@1.4.1
- name: Build
run: yarn typedoc

@ -1,4 +1,6 @@
/**
* @includeExample example/main.js
*
* @module API
*/

@ -9,4 +9,7 @@
"excludeReferences": true,
"out": "./docs/html",
"projectDocuments": ["docs/documents/*.md"],
"plugin": [
"typedoc-plugin-include-example"
]
}