nest-simple-config
Version:
A powerful and flexible configuration management library for NestJS applications. Supports JSON, YAML file loading, environment variable overrides, immutable configurations, and type-safe configuration access with dependency injection.
9 lines (8 loc) • 311 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBindOptionToken = void 0;
// eslint-disable-next-line @typescript-eslint/ban-types
function getBindOptionToken(optionType) {
return `CONFIG_OPTION:${optionType.name}`;
}
exports.getBindOptionToken = getBindOptionToken;