@karmaniverous/get-dotenv
    Preparing search index...

    Variable baseRootOptionDefaultsConst

    baseRootOptionDefaults: {
        dotenvToken: ".env";
        entropyMinLength: 16;
        entropyThreshold: 3.8;
        entropyWhitelist: readonly ["^GIT_", "^npm_", "^CI$", "SHLVL"];
        loadProcess: true;
        logger: Console;
        paths: "./";
        pathsDelimiter: " ";
        privateToken: "local";
        scripts: {
            "git-status": {
                cmd: "git branch --show-current && git status -s -u";
                shell: true;
            };
        };
        shell: true;
        vars: "";
        varsAssignor: "=";
        varsDelimiter: " ";
        warnEntropy: true;
    } = ...

    Default values for root CLI options used by the host and helpers as the baseline layer during option resolution.

    These defaults correspond to the "stringly" root surface (see RootOptionsShape) and are merged by precedence with create-time overrides and any discovered configuration rootOptionDefaults before CLI flags are applied.

    Type Declaration

    • ReadonlydotenvToken: ".env"
    • ReadonlyentropyMinLength: 16
    • ReadonlyentropyThreshold: 3.8
    • ReadonlyentropyWhitelist: readonly ["^GIT_", "^npm_", "^CI$", "SHLVL"]
    • ReadonlyloadProcess: true
    • Readonlylogger: Console
    • Readonlypaths: "./"
    • ReadonlypathsDelimiter: " "
    • ReadonlyprivateToken: "local"
    • Readonlyscripts: {
          "git-status": {
              cmd: "git branch --show-current && git status -s -u";
              shell: true;
          };
      }
    • Readonlyshell: true
    • Readonlyvars: ""
    • ReadonlyvarsAssignor: "="
    • ReadonlyvarsDelimiter: " "
    • ReadonlywarnEntropy: true