Skip to content

Commit bb9f15c

Browse files
committed
fix(api-extractor): suppress private null warning
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 8ebd5bf2-c44b-42d5-be25-e7936d4b0a14
1 parent f515d58 commit bb9f15c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/api-extractor/src/collector/SourceMapper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export interface IGetSourceLocationOptions {
6767

6868
export class SourceMapper {
6969
// Map from .d.ts file path --> ISourceMap if a source map was found, or null if not found
70+
// eslint-disable-next-line @rushstack/no-new-null -- The decoupled ESLint plugin does not recognize native private fields yet.
7071
#sourceMapByFilePath: Map<string, ISourceMap | null> = new Map<string, ISourceMap | null>();
7172

7273
// Cache the FileSystem.exists() result for mapped .ts files

0 commit comments

Comments
 (0)