Otherwise if you’re compiling with mix you can access the above option with mix compile --ignore-module-conflict.
And you can set it as default in your mix.exs file under the project def, I think:
def project do
[
...,
elixirc_options: [ignore_module_conflict: true]
...
]
end