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.
17 lines • 539 B
text/typescript
/**
* @public
*/
export interface IWasmBuildFlags
{
/**
* By default, {@link blockScope} runs in a try catch, so that any objects that are allocated will always be
* properly cleaned up. Disabled if true.
*/
WASM_DISABLE_STACK_LIFECYCLE_TRY_CATCH?: boolean;
// have modules been built with the address sanitizer on?
ASAN?: boolean;
/**
* In debug builds, reference counted links are checked for cycles by default. Setting this true disables this.
*/
WASM_DISABLE_CYCLE_CHECKS?: boolean;
}