fast-fs-hash - v0.0.2
    Preparing search index...

    Interface NearestProjectFiles

    Result of findNearestProjectFiles / findNearestProjectFilesSync.

    Each field is the FIRST occurrence walking up from the start path. The walk stops as soon as all three fields are populated, or at a stop boundary (filesystem root, user home, optional stopPath, or the depth cap of 128).

    interface NearestProjectFiles {
        nodeModules: string | null;
        packageJson: string | null;
        tsconfigJson: string | null;
    }
    Index

    Properties

    nodeModules: string | null

    First node_modules/ directory encountered walking up. Also detected when the start path is already inside a node_modules tree.

    packageJson: string | null

    First package.json (regular file) encountered walking up from the start path.

    tsconfigJson: string | null

    First tsconfig.json (regular file) encountered walking up from the start path.