Interface GlobalConfig

interface GlobalConfig {
    apiPort: number;
    excludeUser?: string;
    fileCheckInterval?: number;
    modules: ModulesConfig;
    multipleMatch: boolean;
    version: string;
    vts?: VTSConfig;
    watch?: boolean;
}

Properties

apiPort: number
excludeUser?: string
fileCheckInterval?: number
modules: ModulesConfig
multipleMatch: boolean
version: string
vts?: VTSConfig
watch?: boolean