anobis
Version:
JavaScript obfuscator
31 lines (28 loc) • 864 B
text/typescript
import { TInputOptions } from '../../types/options/TInputOptions';
import { SourceMapMode } from '../../enums/SourceMapMode';
export const NO_CUSTOM_NODES_PRESET: TInputOptions = Object.freeze({
compact: true,
controlFlowFlattening: false,
controlFlowFlatteningThreshold: 0,
deadCodeInjection: false,
deadCodeInjectionThreshold: 0,
debugProtection: false,
debugProtectionInterval: false,
disableConsoleOutput: false,
domainLock: [],
log: false,
mangle: false,
renameGlobals: false,
reservedNames: [],
rotateStringArray: false,
seed: 0,
selfDefending: false,
sourceMap: false,
sourceMapBaseUrl: '',
sourceMapFileName: '',
sourceMapMode: SourceMapMode.Separate,
stringArray: false,
stringArrayEncoding: false,
stringArrayThreshold: 0,
unicodeEscapeSequence: false
});