Skip to content

Instantly share code, notes, and snippets.

@tomerslice
Last active September 13, 2023 06:19
Show Gist options
  • Save tomerslice/49e523846129dc8e88a5aa28d536fc4f to your computer and use it in GitHub Desktop.
Save tomerslice/49e523846129dc8e88a5aa28d536fc4f to your computer and use it in GitHub Desktop.
Infer with default value
const app = await NestFactory.create(AppModule);
const configService = app.get(ConfigService<{ PORT?: number; }>);
const port = configService.get('PORT', 8080, { infer: true });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment