All files / shared/config index.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 4/4
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13            436x 17512x 2906x 1085x 52985x    
import { ClientConfig, clientConfig } from "shared/config/clientConfig";
import { ServerConfig, serverConfig } from "shared/config/serverConfig";
import { SentryConfig, sentryConfig } from "shared/config/sentryConfig";
import { eventConfig } from "shared/config/eventConfig";
import { EventConfig } from "shared/config/eventConfigTypes";
 
export const config = {
  client: (): ClientConfig => clientConfig,
  server: (): ServerConfig => serverConfig,
  sentry: (): SentryConfig => sentryConfig,
  event: (): EventConfig => eventConfig,
};