@rspack/core
Version:
The fast Rust-based web bundler with webpack-compatible API
11 lines (10 loc) • 375 B
TypeScript
import type { Compiler } from "..";
import type { InfrastructureLogging } from "../config";
export interface NodeEnvironmentPluginOptions {
infrastructureLogging: InfrastructureLogging;
}
export default class NodeEnvironmentPlugin {
options: NodeEnvironmentPluginOptions;
constructor(options: NodeEnvironmentPluginOptions);
apply(compiler: Compiler): void;
}