I want to make several simple methods for ConfigService like getPort()
so I try to extend:
@Injectable()
export class ConfigService extends NestConfigService<EnvVars>
Everything works fine except “global” feature. I found only one way – copy full code of nestjs/config classes to my project. How to do it properly?