next-era
Version:
Welcome to **Next Era**! A comprehensive library designed to supercharge your **Next.js** applications with powerful utilities and significant performance optimizations. Build faster, more efficient, and feature-rich Next.js projects with ease.
11 lines (10 loc) • 416 B
TypeScript
import { Compiler } from "webpack";
import { NextEraPluginType } from "./lib/definitions.js";
export default class NextEraPlugin {
#private;
constructor(options: Partial<NextEraPluginType>);
doReadFiles: (dir: string, parentPath: string, files: string[]) => void;
readFiles(dir: string, exclude?: string[]): string[];
readMD5Sync(filePath: string): string;
apply(compiler: Compiler): void;
}