We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7071f commit 8874ed1Copy full SHA for 8874ed1
src/index.ts
@@ -1,4 +1,6 @@
1
/**
2
- * Some code reproducing a bug.
+ * See {@link Module!~someVar}
3
+ *
4
+ * See {@link Module.someVar}
5
*/
6
export const bug = 123;
src/module.ts
@@ -0,0 +1,5 @@
+/**
+ * @module Module
+ */
+
+export const someVar = 1;
typedoc.json
@@ -1,8 +1,9 @@
{
- "$schema": "https://typedoc.org/schema.json",
- "entryPoints": ["src/index.ts"],
+ "$schema": "https://typedoc.org/schema.json",
+ "entryPoints": ["src/"],
+ "entryPointStrategy": "expand",
- "treatWarningsAsErrors": true,
- "out": "docs",
7
- "json": "docs/docs.json"
+ "treatWarningsAsErrors": true,
+ "out": "docs",
8
+ "json": "docs/docs.json"
9
}
0 commit comments