DO create a single core store module.
Why? it follows the single responsibility principle (SRP) for having a self contained module for managing state (or store)
It should include:
- Bootstraping of the store with
StoreModule.provideStore({})
- The application's actions as providers
location: app/core/store/index.ts