Config.config_target

You're seeing just the macro config_target, go back to Config module for more information.
Link to this macro

config_target()

View Source (macro) (since 1.11.0)

Returns the target this configuration file is executed on.

This is most often used to execute conditional code:

if config_target() == :host do
  config :my_app, :debug, false
end