@nxrocks/nx-quarkus
Version:
Nx Plugin to generate, run, package, build (and more) Quarkus projects inside your Nx workspace
12 lines (11 loc) • 473 B
TypeScript
import { ProjectType } from '@nx/devkit';
import { NormalizedSchema } from '../generators/project/schema';
import { NxQuarkusPluginOptions } from '../graph/plugin';
export declare function getProjectTypeAndTargetsFromFile(projectRootFile: string, options: NxQuarkusPluginOptions): {
projectType: ProjectType;
targets: {};
};
export declare function getProjectTypeAndTargetsFromOptions(options: NormalizedSchema): {
projectType: ProjectType;
targets: {};
};