NoCustomNodesPreset.ts 456 B

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