From a7f7927599459cc543d1bce6f429a693e2458d38 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Laroche Date: Tue, 19 May 2026 14:04:11 -0400 Subject: [PATCH 1/2] Fix baseUrl deprecation warning Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0 --- lib/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/tsconfig.json b/lib/tsconfig.json index 744b5bd..e51380e 100644 --- a/lib/tsconfig.json +++ b/lib/tsconfig.json @@ -3,7 +3,6 @@ "compilerOptions": { "resolveJsonModule": true, "composite": true, - "baseUrl": ".", "outDir": "./dist/", "target": "es6", "lib": ["dom", "dom.iterable", "es2020"] From 0302dab2a12c8b2e0f02639f47afee7651088f4b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Laroche Date: Tue, 19 May 2026 14:04:54 -0400 Subject: [PATCH 2/2] Fix NodeJS namespace not found Cannot find namespace 'NodeJS'. --- lib/addons/prebid/analytics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/addons/prebid/analytics.ts b/lib/addons/prebid/analytics.ts index 7b5546f..f9788eb 100644 --- a/lib/addons/prebid/analytics.ts +++ b/lib/addons/prebid/analytics.ts @@ -35,7 +35,7 @@ interface OptablePrebidAnalyticsConfig { interface AuctionItem { auctionEnd: unknown | null; - auctionEndTimeoutId: NodeJS.Timeout | null; + auctionEndTimeoutId: ReturnType | null; missed: boolean; createdAt: Date; bidWonEvents: any[];