@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface ProjectInfoTelemetryEventData

    interface ProjectInfoTelemetryEventData {
        compileOnSave: boolean;
        compilerOptions: tsc.CompilerOptions;
        configFileName: "other" | "tsconfig.json" | "jsconfig.json";
        exclude: boolean | undefined;
        extends: boolean | undefined;
        files: boolean | undefined;
        fileStats: FileStats;
        include: boolean | undefined;
        languageServiceEnabled: boolean;
        projectId: string;
        projectType: "external" | "configured";
        typeAcquisition: ProjectInfoTypeAcquisitionData;
        version: string;
    }
    Index

    Properties

    compileOnSave: boolean
    compilerOptions: tsc.CompilerOptions

    Any compiler options that might contain paths will be taken out. Enum compiler options will be converted to strings.

    configFileName: "other" | "tsconfig.json" | "jsconfig.json"
    exclude: boolean | undefined
    extends: boolean | undefined
    files: boolean | undefined
    fileStats: FileStats

    Count of file extensions seen in the project.

    include: boolean | undefined
    languageServiceEnabled: boolean
    projectId: string

    Cryptographically secure hash of project file location.

    projectType: "external" | "configured"
    version: string

    TypeScript version used by the server.