(config: {} | null)
| 19 | * CI and test situations in which loading from the `.ng-dev/` directory is not possible. |
| 20 | */ |
| 21 | export function setCachedConfig(config: {} | null): void { |
| 22 | cachedConfig = config; |
| 23 | } |
| 24 | |
| 25 | /** Gets the cached configuration, or `null` if not set. */ |
| 26 | export function getCachedConfig(): {} | null { |