mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
import { NativeScriptConfig } from '@nativescript/core';
|
|
|
|
export default {
|
|
id: 'org.nativescript.ToolBox',
|
|
appResourcesPath: '../../tools/assets/App_Resources',
|
|
webpackConfigPath: 'webpack.custom.config.js',
|
|
android: {
|
|
v8Flags: '--expose_gc',
|
|
markingMode: 'none',
|
|
suppressCallJSMethodExceptions: false,
|
|
},
|
|
} as NativeScriptConfig;
|