Skip to content

Commit 8874ed1

Browse files
committed
Reproducing issue #2810
1 parent 1e7071f commit 8874ed1

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/**
2-
* Some code reproducing a bug.
2+
* See {@link Module!~someVar}
3+
*
4+
* See {@link Module.someVar}
35
*/
46
export const bug = 123;

src/module.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/**
2+
* @module Module
3+
*/
4+
5+
export const someVar = 1;

typedoc.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["src/index.ts"],
2+
"$schema": "https://typedoc.org/schema.json",
3+
"entryPoints": ["src/"],
4+
"entryPointStrategy": "expand",
45

5-
"treatWarningsAsErrors": true,
6-
"out": "docs",
7-
"json": "docs/docs.json"
6+
"treatWarningsAsErrors": true,
7+
"out": "docs",
8+
"json": "docs/docs.json"
89
}

0 commit comments

Comments
 (0)