123456789101112131415 |
- import { IOptionsPreset } from "../interfaces/IOptionsPreset";
- export const NO_CUSTOM_NODES_PRESET: IOptionsPreset = Object.freeze({
- compact: true,
- debugProtection: false,
- debugProtectionInterval: false,
- disableConsoleOutput: false,
- encodeUnicodeLiterals: false,
- reservedNames: [],
- rotateUnicodeArray: false,
- selfDefending: false,
- unicodeArray: false,
- unicodeArrayThreshold: 0,
- wrapUnicodeArrayCalls: false
- });
|