Documentation
    Preparing search index...

    File inspected by the filesystem based upon the provided globs and the current file path

    const inspectedFile: InspectedFile = {
    fileType: 'script',
    reloadServer: true,
    unixRelativePath: 'app/controllers/users_controller.ts',
    unixAbsolutePath: '/project/app/controllers/users_controller.ts'
    }
    type InspectedFile = {
        fileType: "script" | "meta" | "test";
        reloadServer: boolean;
        unixRelativePath: string;
        unixAbsolutePath: string;
    }
    Index

    Properties

    fileType: "script" | "meta" | "test"

    The category of the file based on its purpose

    reloadServer: boolean

    Whether changes to this file should trigger server reload

    unixRelativePath: string

    Unix-style relative path from project root

    unixAbsolutePath: string

    Unix-style absolute path to the file