export const string = (name?: string): Config.Config<string> => { const config = primitive( "a text property", Either.right ) return name === undefined ? config : nested(config, name)}
export const string = (name?: string): Config.Config<string> => { const config = primitive( "a text property", Either.right ) return name === undefined ? config : nested(config, name)}
And this is where I hit a dead end. At runtime, I can see that the
fromEnv.load
fromEnv.load
function in
ConfigProvider
ConfigProvider
is somehow called, but I don't know how to find this without running the program. I'm asking because it's really important for me to navigate code easily, and I'm afraid that Effect makes it impossible.