If 'ion-item' is an Angular component, then verify that it is part of this module.

JavaScript
I had this problem when I was importing the page (component) rather than the module, and it wasn’t giving any compilation errors but then module not known at runtime. In your app.module.ts put your module in the imports list.
Source

Also in JavaScript: