17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
import { NativeScriptConfig } from '@nativescript/core';
|
|
|
|
export default {
|
|
id: 'org.nativescript.blakus',
|
|
appResourcesPath: 'App_Resources',
|
|
android: {
|
|
v8Flags: '--expose_gc',
|
|
markingMode: 'none',
|
|
codeCache: true,
|
|
suppressCallJSMethodExceptions: false,
|
|
},
|
|
ios: {
|
|
discardUncaughtJsExceptions: false,
|
|
},
|
|
appPath: 'src',
|
|
} as NativeScriptConfig;
|