refactor: ensure modules with 'declare global' are correctly handled by Rollup

Explicitly adding an `export {}` to modules containing declare global fixes an issue where Rollup would incorrectly claim that the global variable is not defined in the emitted .d.ts files.

Needed to land the latest rules_angular.
This commit is contained in:
Alan Agius 2026-03-13 07:19:38 +00:00 committed by Matthew Beck (Berry)
parent 7cd474d1d6
commit e8cfa44b10

View file

@ -41,3 +41,6 @@ export const setCookieConsent = (state: 'denied' | 'granted'): void => {
}
}
};
// This fixes the RollupError: Exported variable "global" is not defined.
export {};