Qualify CJS-only module imports

This commit is contained in:
Fedor Indutny
2025-09-19 13:05:51 -07:00
committed by GitHub
parent 140241b83f
commit 40eaf078cc
401 changed files with 1278 additions and 593 deletions

View File

@@ -6,12 +6,14 @@ import {
type VirtualItem,
type Virtualizer,
} from '@tanstack/react-virtual';
import { chunk, groupBy } from 'lodash';
import lodash from 'lodash';
import type { RefObject } from 'react';
import { useCallback, useMemo } from 'react';
import { strictAssert } from '../../../util/assert.js';
import { missingCaseError } from '../../../util/missingCaseError.js';
const { chunk, groupBy } = lodash;
export type SectionKey = `section-${string}`;
export type HeaderKey = `header-${string}`;
export type RowKey = `row-${string}`;