Got the solution,
Here are the steps that I followed
- update the Typescript
- Since I have modified default MUI theme by adding custom breakpoints, I have explicitly defined the types for it in separate module file.
- Added that explicit file path in
tsconfig like this
"paths": {
"@/*": ["./src/*", "./src/app/types/theme/*"]
},