chore: Replace deprecated 'node' module resolution with 'bundler' and tighten compiler options (#2594)

This commit is contained in:
Dermot Duffy
2026-07-22 12:12:00 -07:00
committed by GitHub
parent 87ecbc7e45
commit 2ca4aa95e5
13 changed files with 29 additions and 29 deletions
-1
View File
@@ -7,7 +7,6 @@ import type { HomeAssistant } from '../../../../src/ha/types';
export class EntityRegistryManagerMock implements EntityRegistryManager {
private _cache = new EntityCache();
private _fetchedEntityList = false;
constructor(data?: Entity[]) {
data?.forEach((entity) => {
+1 -2
View File
@@ -1,5 +1,4 @@
import type { EmblaCarouselType, EmblaEventType } from 'embla-carousel';
import type { EngineType } from 'embla-carousel/components/Engine';
import type { EmblaCarouselType, EmblaEventType, EngineType } from 'embla-carousel';
import { vi } from 'vitest';
import { mock } from 'vitest-mock-extended';