After upgrading to Angular 7 I am unable to create builds using AOT (using Ionic).
I run ionic cordova build android and get
ERROR in Error during template compile of 'AppModule'
Function calls are not supported in decorators but 'NgForageModule' was called.
app.module.ts:
import {NgForageModule, Driver} from 'ngforage';
...
imports: [
NgForageModule.forRoot({
name: 'next-storage',
driver: [
Driver.INDEXED_DB,
Driver.WEB_SQL,
Driver.LOCAL_STORAGE
]
}),
...
]
...