We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9205b1 commit 073d6d8Copy full SHA for 073d6d8
javascript/extractor/lib/typescript/src/type_table.ts
@@ -435,6 +435,7 @@ export class TypeTable {
435
* Returns `null` if we do not support extraction of this type.
436
*/
437
public getId(type: ts.Type, unfoldAlias: boolean): number | null {
438
+ if (this.skipExtractingTypes) return null;
439
let cached = this.idCache.get(type) ?? [undefined, undefined];
440
let cachedValue = cached[unfoldAlias ? 1 : 0];
441
if (cachedValue !== undefined) return cachedValue;
0 commit comments