UNPKG

@nativescript/nx

Version:

NativeScript Plugin for Nx

27 lines (26 loc) 784 B
import { NormalizedSchema } from '../schema'; import { ProjectConfiguration } from '@nx/devkit'; export declare function getFrontendFrameworkTargets(options: NormalizedSchema): { build: { executor: "@nativescript/nx:build"; options: { noHmr: boolean; production: boolean; uglify: boolean; release: boolean; forDevice: boolean; }; configurations: { prod: { fileReplacements: { replace: string; with: string; }[]; }; }; dependsOn: string[]; }; } | { build?: undefined; }; export declare function getProjectConfiguration(options: NormalizedSchema): ProjectConfiguration;