Since Angular now defaults to standalone component, it only make sense for ionic imports to be standalone by default.
It gets tedious to type something like:
import { Config } from '@ionic/angular/standalone';
vs
import { Config } from '@ionic/angular/';
Make NgModule based apps use:
import { Config } from '@ionic/angular/ngmodule';