javascript-obfuscator
Version:
JavaScript obfuscator
44 lines (41 loc) • 1.44 kB
text/typescript
import { TInputOptions } from '../../types/options/TInputOptions';
import { IdentifierNamesGenerator } from '../../enums/generators/identifier-names-generators/IdentifierNamesGenerator';
import { ObfuscationTarget } from '../../enums/ObfuscationTarget';
import { SourceMapMode } from '../../enums/source-map/SourceMapMode';
export const NO_ADDITIONAL_NODES_PRESET: TInputOptions = Object.freeze({
compact: true,
controlFlowFlattening: false,
controlFlowFlatteningThreshold: 0,
deadCodeInjection: false,
deadCodeInjectionThreshold: 0,
debugProtection: false,
debugProtectionInterval: false,
disableConsoleOutput: false,
domainLock: [],
exclude: [],
identifierNamesGenerator: IdentifierNamesGenerator.HexadecimalIdentifierNamesGenerator,
identifiersPrefix: '',
identifiersDictionary: [],
inputFileName: '',
inputFilePath: '',
log: false,
renameGlobals: false,
reservedNames: [],
reservedStrings: [],
rotateStringArray: false,
seed: 0,
selfDefending: false,
shuffleStringArray: false,
sourceMap: false,
sourceMapBaseUrl: '',
sourceMapFileName: '',
sourceMapMode: SourceMapMode.Separate,
splitStrings: false,
splitStringsChunkLength: 0,
stringArray: false,
stringArrayEncoding: false,
stringArrayThreshold: 0,
target: ObfuscationTarget.Browser,
transformObjectKeys: false,
unicodeEscapeSequence: false
});