I upgraded my app from Angular 7 to Angular 8 using ng update
. When I run it via ng serve
, There's a warning printed in my console from ngrx
:
@ngrx/store: runtime checks are currently opt-in but will be the default in the next major version with the possibility to opt-out, see https://ngrx.io/guide/migration/v8 for more information.
The documentation at the provided link talks about ngrx-store-freeze
being deprecated. However, my application does not use ngrx-store-freeze
, and I have no idea what a "runtime check" is. What do I need to change in my code to address the source of this warning?