@bdxygy/webpack-javascript-obfuscator-plugin
Version:
This package is the successor of javascript-obfuscator specifically designed for the webpack environment. It performs obfuscation after webpack has completed the afterEmit lifecycle.
11 lines (10 loc) • 401 B
TypeScript
import { Compiler } from "webpack";
import { TInputOptions } from "javascript-obfuscator/typings/src/types/options/TInputOptions.js";
export interface ObfuscatorOption extends TInputOptions {
}
declare class ObfuscatorPlugin {
private obfuscatorOption?;
constructor(obfuscatorOptionParam?: ObfuscatorOption | undefined);
apply(compiler: Compiler): void;
}
export default ObfuscatorPlugin;