import { Injectable } from '@nestjs/common'; import { ConfigService } from '@nestjs/config'; import { AllConfigType } from 'src/config/config.type'; @Injectable() export class HomeService { constructor(private configService: ConfigService) {} appInfo() { return { name: this.configService.get('app.name', { infer: true }) }; } }