DefaultPreset.ts 395 B

1234567891011121314
  1. import { IOptions } from "../interfaces/IOptions";
  2. export const DEFAULT_PRESET: IOptions = Object.freeze({
  3. compact: true,
  4. debugProtection: false,
  5. debugProtectionInterval: false,
  6. disableConsoleOutput: true,
  7. encodeUnicodeLiterals: false,
  8. reservedNames: [],
  9. rotateUnicodeArray: true,
  10. selfDefending: true,
  11. unicodeArray: true,
  12. wrapUnicodeArrayCalls: true
  13. });