Skip to content

Commit cd1b524

Browse files
committed
fix: typedoc設定を旧packageOptions相当に統一
1 parent ef6960c commit cd1b524

File tree

5 files changed

+20
-21
lines changed

5 files changed

+20
-21
lines changed

packages/ast/typedoc.monorepo.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/**/*.ts"],
44
"tsconfig": "tsconfig.json",
5+
"validation": {
6+
"notExported": false
7+
},
58
"versions": {
69
"stable": "auto",
710
"dev": "auto",
@@ -12,9 +15,5 @@
1215
"root": "../../docs"
1316
}
1417
},
15-
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"],
16-
"navigation": {
17-
"includeGroups": true,
18-
"includeFolders": true
19-
}
18+
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"]
2019
}

packages/parser/typedoc.monorepo.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/**/*.ts"],
44
"tsconfig": "tsconfig.typedoc.json",
5+
"validation": {
6+
"notExported": false
7+
},
58
"versions": {
69
"stable": "auto",
710
"dev": "auto",
@@ -12,9 +15,5 @@
1215
"root": "../../docs"
1316
}
1417
},
15-
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"],
16-
"navigation": {
17-
"includeGroups": true,
18-
"includeFolders": true
19-
}
18+
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"]
2019
}

packages/render/typedoc.monorepo.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/**/*.ts"],
44
"tsconfig": "tsconfig.typedoc.json",
5+
"validation": {
6+
"notExported": false
7+
},
58
"versions": {
69
"stable": "auto",
710
"dev": "auto",
@@ -12,9 +15,5 @@
1215
"root": "../../docs"
1316
}
1417
},
15-
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"],
16-
"navigation": {
17-
"includeGroups": true,
18-
"includeFolders": true
19-
}
18+
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"]
2019
}

packages/runtime/typedoc.monorepo.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"$schema": "https://typedoc.org/schema.json",
33
"entryPoints": ["src/**/*.ts"],
44
"tsconfig": "tsconfig.json",
5+
"validation": {
6+
"notExported": false
7+
},
58
"versions": {
69
"stable": "auto",
710
"dev": "auto",
@@ -12,9 +15,5 @@
1215
"root": "../../docs"
1316
}
1417
},
15-
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"],
16-
"navigation": {
17-
"includeGroups": true,
18-
"includeFolders": true
19-
}
18+
"plugin": ["@r74tech/typedoc-plugin-monorepo-versions"]
2019
}

scripts/import-release-docs.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,14 @@ for (const { tag, pkg, version } of releases) {
8686
const configContent = JSON.stringify(
8787
{
8888
$schema: "https://typedoc.org/schema.json",
89-
entryPoints: ["src/index.ts"],
89+
entryPoints: ["src/**/*.ts"],
9090
tsconfig: fs.existsSync(path.join(pkgDir, "tsconfig.typedoc.json"))
9191
? "tsconfig.typedoc.json"
9292
: "tsconfig.json",
9393
plugin: ["@r74tech/typedoc-plugin-monorepo-versions"],
94+
validation: {
95+
notExported: false,
96+
},
9497
versions: {
9598
stable: "auto",
9699
dev: "auto",

0 commit comments

Comments
 (0)