config()

in src/Package.ts [158:162]


  config(configFn: Function) {
    if (typeof configFn !== 'function' ) { throw new Error('configFn must be a function'); }
    this.configFns.push(configFn);
    return this;
  }