gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
48 lines (47 loc) • 1.58 kB
TypeScript
declare const command: {
readonly configs: {
readonly autoCrlf: {
readonly description: "Detect line endings";
readonly cli: {
readonly type: BooleanConstructor;
};
readonly scope: "storage";
};
readonly removeNeedles: {
readonly description: "Remove needles, needles are used by entity and language generators to inject code";
readonly cli: {
readonly type: BooleanConstructor;
};
readonly jdl: {
readonly tokenType: "BOOLEAN";
readonly type: "boolean";
};
readonly scope: "storage";
};
readonly skipPrettier: {
readonly description: "Skip prettier transformation";
readonly cli: {
readonly type: BooleanConstructor;
readonly hide: true;
};
readonly scope: "generator";
};
readonly skipEslint: {
readonly description: "Skip ESlint transformation";
readonly cli: {
readonly type: BooleanConstructor;
readonly hide: true;
};
readonly scope: "generator";
};
readonly refreshOnCommit: {
readonly description: "Refresh files on commit";
readonly cli: {
readonly type: BooleanConstructor;
readonly hide: true;
};
readonly scope: "generator";
};
};
};
export default command;