@nx/react-native
Version:
18 lines • 598 B
TypeScript
import { Tree } from '@nx/devkit';
import { WebConfigurationGeneratorSchema } from '../schema';
export interface NormalizedSchema extends WebConfigurationGeneratorSchema {
projectRoot: string;
fileName: string;
className: string;
}
export declare function normalizeSchema(tree: Tree, schema: WebConfigurationGeneratorSchema): {
projectRoot: string;
offsetFromRoot: string;
fileName: string;
className: string;
project: string;
bundler: "vite" | "webpack";
skipFormat?: boolean;
skipPackageJson?: boolean;
};
//# sourceMappingURL=normalize-schema.d.ts.map