UNPKG

@idoconfig/provider-folder

Version:

Provider for idoconfig that reads values from files within a folder Useful for Docker Secrets.

9 lines (8 loc) 313 B
import { IConfigurationValueProviderOptions } from "@idoconfig/base"; export interface IFolderConfigurationValueProviderOptions extends IConfigurationValueProviderOptions { path?: string; stripFileExtension?: boolean; uppercase?: boolean; underscore?: boolean; blacklist?: string[]; }