UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

19 lines 513 B
export interface IDebugBuildFlags { /** * This can be set in dead code removal tools to trim debug code. Unlike other flags, this should always be defined. */ DEBUG: boolean; /** * Prevents hitting assert / error breakpoints, useful when debugging tests. */ DISABLE_BREAKPOINT?: boolean; /** * Enable verbose logging. */ VERBOSE?: boolean; /** * Disable debug checks that do not run in constant time. */ DISABLE_EXPENSIVE_CHECKS?: boolean; }