Directives
...more to come soon!
yarn add @nglibrary/utilsimport { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { UtilsModule } from '@nglibrary/utils'; // <---
@NgModule({
  declarations: [ AppComponent ],
  imports: [
    UtilsModule.forRoot( /* global config */ ) // <---
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }