forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIOptions.d.ts
More file actions
29 lines (28 loc) · 1.1 KB
/
Copy pathIOptions.d.ts
File metadata and controls
29 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { TSourceMapMode } from '../../types/TSourceMapMode';
import { TStringArrayEncoding } from '../../types/options/TStringArrayEncoding';
export interface IOptions {
readonly compact: boolean;
readonly controlFlowFlattening: boolean;
readonly controlFlowFlatteningThreshold: number;
readonly deadCodeInjection: boolean;
readonly deadCodeInjectionThreshold: number;
readonly debugProtection: boolean;
readonly debugProtectionInterval: boolean;
readonly disableConsoleOutput: boolean;
readonly domainLock: string[];
readonly log: boolean;
readonly mangle: boolean;
readonly renameGlobals: boolean;
readonly reservedNames: string[];
readonly rotateStringArray: boolean;
readonly seed: number;
readonly selfDefending: boolean;
readonly sourceMap: boolean;
readonly sourceMapBaseUrl: string;
readonly sourceMapFileName: string;
readonly sourceMapMode: TSourceMapMode;
readonly stringArray: boolean;
readonly stringArrayEncoding: TStringArrayEncoding;
readonly stringArrayThreshold: number;
readonly unicodeEscapeSequence: boolean;
}