NoCustomNodes.ts 803 B

123456789101112131415161718192021222324252627
  1. import { TInputOptions } from '../../types/options/TInputOptions';
  2. import { SourceMapMode } from '../../enums/SourceMapMode';
  3. export const NO_CUSTOM_NODES_PRESET: TInputOptions = Object.freeze({
  4. compact: true,
  5. controlFlowFlattening: false,
  6. controlFlowFlatteningThreshold: 0,
  7. deadCodeInjection: false,
  8. deadCodeInjectionThreshold: 0,
  9. debugProtection: false,
  10. debugProtectionInterval: false,
  11. disableConsoleOutput: false,
  12. domainLock: [],
  13. reservedNames: [],
  14. rotateStringArray: false,
  15. seed: 0,
  16. selfDefending: false,
  17. sourceMap: false,
  18. sourceMapBaseUrl: '',
  19. sourceMapFileName: '',
  20. sourceMapMode: SourceMapMode.Separate,
  21. stringArray: false,
  22. stringArrayEncoding: false,
  23. stringArrayThreshold: 0,
  24. unicodeEscapeSequence: false
  25. });