Skip to content

Commit a95a80e

Browse files
committed
chore: fix typedoc configuration
1 parent 3ad5661 commit a95a80e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"format": "prettier --cache --write .",
3535
"release": "bumpp",
3636
"prepublishOnly": "pnpm build",
37-
"docs:api": "typedoc --out api-doc --readme none --exclude \"**/__test__/**\" --theme minimal"
37+
"docs:api": "typedoc"
3838
},
3939
"devDependencies": {
4040
"@sxzz/eslint-config": "^7.8.0",

src/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { runtimeInfo } from './runtime.ts'
21
import { Option, type OptionConfig } from './option.ts'
2+
import { runtimeInfo } from './runtime.ts'
33
import {
44
CACError,
55
findAllBrackets,

typedoc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://typedoc.org/schema.json",
3+
"entryPoints": ["src/index.ts"],
4+
"out": "./api-doc",
5+
"readme": "none"
6+
}

0 commit comments

Comments
 (0)