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.
16 lines • 526 B
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;
ASAN?: boolean;
/**
* In debug builds, reference counted links are checked for cycles by default. Setting this true disables this.
*/
WASM_DISABLE_CYCLE_CHECKS?: boolean;
}
//# sourceMappingURL=i-wasm-build-flags.d.ts.map