Skip to content

Commit 03f1543

Browse files
committed
Inline typedoc configuration
- In anticipation of TypeStrong/typedoc#1891
1 parent b962e4b commit 03f1543

File tree

3 files changed

+41
-25
lines changed

3 files changed

+41
-25
lines changed

packages/shell/src/component/jsx-runtime.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ declare global {
2828

2929
}
3030

31+
/**
32+
* @see https://github.com/google/incremental-dom/pull/467
33+
*/
34+
interface Node {
35+
readonly namespaceURI: string | null;
36+
}
37+
3138
}
3239

3340
/**

tsconfig.json

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,38 @@
4343

4444
"include": [
4545
"./packages/**/*.ts"
46-
]
46+
],
47+
48+
"typedocOptions": {
49+
"name": "@sgrud",
50+
"gitRevision": "main",
51+
52+
"excludeExternals": true,
53+
"treatWarningsAsErrors": true,
54+
55+
"entryPoints": [
56+
"./packages/bin/index.ts",
57+
"./packages/bus/index.ts",
58+
"./packages/core/index.ts",
59+
"./packages/data/index.ts",
60+
"./packages/shell/index.ts",
61+
"./packages/state/index.ts"
62+
],
63+
64+
"sort": [
65+
"static-first",
66+
"visibility",
67+
"alphabetical"
68+
],
69+
70+
"tsconfig": {
71+
"noUnusedLocals": false,
72+
"noUnusedParameters": false
73+
},
74+
75+
"validation": {
76+
"invalidLink": true,
77+
"notExported": true
78+
}
79+
}
4780
}

typedoc.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)