feat: add enableMultithreadedJavascript flag to config definition

This commit is contained in:
Igor Randjelovic
2020-08-29 20:29:02 +02:00
parent 967d652c61
commit 4abfc8a370

View File

@@ -10,9 +10,7 @@ interface IConfigPlaform {
discardUncaughtJsExceptions?: boolean; discardUncaughtJsExceptions?: boolean;
} }
interface IConfigIOS extends IConfigPlaform { interface IConfigIOS extends IConfigPlaform {}
}
interface IConfigAndroid extends IConfigPlaform { interface IConfigAndroid extends IConfigPlaform {
v8Flags?: string; v8Flags?: string;
@@ -21,7 +19,7 @@ interface IConfigAndroid extends IConfigPlaform {
heapSnapshotScript?: string; heapSnapshotScript?: string;
"snapshot.blob"?: string; 'snapshot.blob'?: string;
profilerOutputDir?: string; profilerOutputDir?: string;
@@ -44,6 +42,8 @@ interface IConfigAndroid extends IConfigPlaform {
suppressCallJSMethodExceptions?: boolean; suppressCallJSMethodExceptions?: boolean;
enableLineBreakpoints?: boolean; enableLineBreakpoints?: boolean;
enableMultithreadedJavascript?: boolean;
} }
export interface NativeScriptConfig { export interface NativeScriptConfig {