envolution
Version:
TypeScript-first environment configuration with Zod validation, .env support, hot reloading, and startup validation. Zero-config setup - just install and use! Perfect for Node.js, AWS Lambda, and modern TypeScript applications.
16 lines • 588 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createCustomSchema = createCustomSchema;
exports.mergeSchemas = mergeSchemas;
exports.createEnvironmentConfig = createEnvironmentConfig;
const EnvironmentConfig_1 = require("../EnvironmentConfig");
function createCustomSchema(schema) {
return schema;
}
function mergeSchemas(schema1, schema2) {
return schema1.merge(schema2);
}
function createEnvironmentConfig(schema, options) {
return EnvironmentConfig_1.EnvironmentConfig.getInstance(schema, options);
}
//# sourceMappingURL=custom.js.map