ts-paths-to-relative-path-rspack-plugin
Version:
convert ts path alias to relative paths in the bundleless mode of rslib
9 lines (8 loc) • 322 B
TypeScript
import type { Compiler, RspackPluginInstance } from '@rspack/core';
export declare class TsPathsToRelativePathRspackPlugin implements RspackPluginInstance {
private pluginName;
private defaultTsConfigPath;
constructor(tsConfigPath?: string);
private getTsConfigPath;
apply(compiler: Compiler): void;
}