DefaultPreset.ts 347 B

123456789101112
  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. rotateUnicodeArray: true,
  8. encodeUnicodeLiterals: false,
  9. unicodeArray: true,
  10. wrapUnicodeArrayCalls: true
  11. });