fix(ci): Update CI workflows, dependency versions, and TypeScript configuration

This commit is contained in:
2025-04-25 09:01:40 +00:00
parent e0a4e5a076
commit 5e16294773
12 changed files with 2249 additions and 1085 deletions

View File

@@ -4,7 +4,18 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of }
export type { Observer } from 'rxjs';
import { buffer, bufferCount, bufferTime, debounce, debounceTime, filter, map, startWith, takeUntil, throttleTime } from 'rxjs/operators';
import {
buffer,
bufferCount,
bufferTime,
debounce,
debounceTime,
filter,
map,
startWith,
takeUntil,
throttleTime,
} from 'rxjs/operators';
export const ops = {
buffer,
@@ -16,5 +27,5 @@ export const ops = {
map,
startWith,
takeUntil,
throttleTime
throttleTime,
};