Go to repository

Interface ConfigEnvironment

Models the configuration for the system's environment, as detected by node. Is one of the main Config sections.

interface ConfigEnvironment {
    detectedPackageManager: keyof ConfigPackageManagers;
    operatingSystem: OSType;
    toolTestServer: string;
    toolVersion: string;
    workingDirectory: string;
}

Properties

detectedPackageManager: keyof ConfigPackageManagers

The current package manager, as detected through environment.

operatingSystem: OSType

The current operating system, as detected through environment.

toolTestServer: string

The running tool test server.

toolVersion: string

The running tool version.

workingDirectory: string

The current working directory, as detected through environment.