Skip to content

Commit

Permalink
fix: simplify TypeDoc configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mherod committed Jan 3, 2025
1 parent a8a70dc commit 67457e0
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/index.ts",
"src/cli/cli.ts",
"src/types/ExportedCookie.ts",
"src/types/CookieSpec.ts",
"src/types/CookieRender.ts"
],
"entryPoints": ["src/index.ts", "src/cli/cli.ts"],
"out": "docs/reference",
"plugin": ["typedoc-plugin-markdown"],
"readme": "none",
Expand All @@ -19,16 +13,5 @@
"includeVersion": true,
"categorizeByGroup": true,
"categoryOrder": ["Core", "Browsers", "CLI", "*"],
"tsconfig": "tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@core/*": ["src/core/*"],
"@utils/*": ["src/utils/*"],
"@browsers/*": ["src/browsers/*"],
"@cli/*": ["src/cli/*"],
"@types/*": ["src/types/*"]
}
}
"tsconfig": "tsconfig.json"
}

0 comments on commit 67457e0

Please sign in to comment.