Configuration type

Use the configuration object to configure MSAL and initialize the client application object

  • auth: this is where you configure auth elements like clientID, authority used for authenticating against the Microsoft Identity Platform
  • cache: this is where you configure cache location
  • system: this is where you can configure the network client, logger
type Configuration = {
  auth: NodeAuthOptions,
  cache?: CacheOptions,
  system?: NodeSystemOptions,
  telemetry?: NodeTelemetryOptions,
}