mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
import { NativeScriptConfig } from '@nativescript/core';
|
|
|
|
export default {
|
|
// I'd call it .new but that's a reserved token for Android
|
|
id: 'org.nativescript.dom.events.proposed',
|
|
appResourcesPath: '../../tools/assets/App_Resources',
|
|
android: {
|
|
v8Flags: '--expose_gc',
|
|
markingMode: 'none',
|
|
},
|
|
appPath: 'src',
|
|
cli: {
|
|
packageManager: 'npm',
|
|
},
|
|
} as NativeScriptConfig;
|