eject-enum
    Preparing search index...

    Variable EjectEnumTarget

    EjectEnumTarget: {
        projects(tsconfigPaths: readonly string[]): EjectEnumTarget;
        srcPaths(
            paths: { exclude?: readonly string[]; include: readonly string[] },
        ): EjectEnumTarget;
    }

    Type Declaration

    • projects: function
      • Specifies projects' tsconfig paths as the rewrite target.

        Parameters

        • tsconfigPaths: readonly string[]

          tsconfig paths for projects to rewrite.

        Returns EjectEnumTarget

    • srcPaths: function
      • Directly specifies source file paths to include into (and optionally exclude from) the rewrite targets.

        Parameters

        • paths: { exclude?: readonly string[]; include: readonly string[] }

          Target paths specification.

          • Optionalexclude?: readonly string[]

            Paths or globs to the files that should be excluded from the rewrite target.

          • include: readonly string[]

            Paths or globs to the files to rewrite.

        Returns EjectEnumTarget