I want to have the same styles in titleformat command and ToC. How can I do this? I want to see "CHAPTER 1. SOME TITLE" in ToC in the example below:
\documentclass{extreport}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\bfseries\filcenter}{CHAPTER \thechapter. }{0mm}{}
\begin{document}
\tableofcontents
\chapter{SOME TITLE}
\lipsum[1]
\end{document}


