We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df32047 commit c99978cCopy full SHA for c99978c
packages/react-docgen/src/Documentation.ts
@@ -205,6 +205,7 @@ export default class DocumentationBuilder {
205
const obj: Documentation = {};
206
207
for (const [key, value] of this.#data) {
208
+ // @ts-expect-error custom handlers can add any properties to Documentation
209
obj[key] = value;
210
}
211
tsconfig.base.json
@@ -6,7 +6,7 @@
6
"target": "es2020",
7
"module": "es2020",
8
"strict": true,
9
- "noImplicitAny": false,
+ "noImplicitAny": true,
10
"noImplicitReturns": true,
11
"noUncheckedIndexedAccess": true,
12
"noUnusedLocals": true,
0 commit comments