IOptionsPreset.d.ts 540 B

123456789101112131415161718
  1. import { TSourceMapMode } from "../types/TSourceMapMode";
  2. export interface IOptionsPreset {
  3. compact?: boolean;
  4. debugProtection?: boolean;
  5. debugProtectionInterval?: boolean;
  6. disableConsoleOutput?: boolean;
  7. encodeUnicodeLiterals?: boolean;
  8. reservedNames?: string[];
  9. rotateUnicodeArray?: boolean;
  10. selfDefending?: boolean;
  11. sourceMap?: boolean;
  12. sourceMapMode?: TSourceMapMode;
  13. unicodeArray?: boolean;
  14. unicodeArrayThreshold?: number;
  15. wrapUnicodeArrayCalls?: boolean;
  16. [key: string]: any;
  17. }