I have a standard setup from the NGRX data docs with one Entity. Everything works with JIT but when I do AOT then I get following Error:
...
Function expressions are not supported in decorators in 'entityConfig'
'entityConfig' references 'ɵ0'
...
Consider changing the function expression into an exported function.
My entity config:
const entityMetadata: EntityMetadataMap = {
Identifiers: {}
};
export const entityConfig = {
entityMetadata
};
My module:
...
import { entityConfig } from './store/entity-metadata';
@NgModule({
imports: [CommonModule, EntityDataModule.forRoot(entityConfig)]
})
...
The error is thrown here:
EntityDataModule.forRoot(entityConfig)
Versions:
"@angular/core": "^8.1.1",
"@ngrx/data": "^8.6.0",
"@ngrx/store": "^8.6.0",
The problem can be solved by using the
EntityDefinitionService
like this:But the
EntityDefinitionService
expects theEntityMetadataMap
directly, without wrapping it in an Object.Worth mentioning is that I have the Store split up to multiple modules. They are technically not lazy-loaded but my
app-store.module.ts
looks like this:Comprehensive explanation about the difference between JIT and AOT:
https://gist.github.com/chuckjaz/65dcc2fd5f4f5463e492ed0cb93bca60