UNPKG

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.

15 lines (14 loc) 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefaultConfigurationProvider = void 0; const _1 = require("."); class DefaultConfigurationProvider extends _1.ConfigurationProvider { constructor(configObject) { super(); this.configObject = configObject; } loadConfigObject() { return this.configObject; } } exports.DefaultConfigurationProvider = DefaultConfigurationProvider;