webpack-typescript-config-dump-plugin
Version:
A webpack plugin to cache compiled typescript config on the file system
16 lines (15 loc) • 370 B
TypeScript
interface PluginOptions {
outputPath?: string;
name?: string;
}
export declare class TypescriptConfigDumpPlugin {
private readonly outputPath;
private readonly name;
private loader;
constructor(options?: PluginOptions);
apply(compiler: any): void;
private findTsLoader;
private tryTogGetLoader;
private dumpTsConfig;
}
export {};