zents-cli
Version:
ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.
14 lines (13 loc) • 422 B
TypeScript
import AbstractGenerator from '../classes/AbstractGenerator';
export default class Project extends AbstractGenerator {
private answers;
private isDev;
constructor(args: any, options: any);
prompting(): Promise<void>;
writing(): Promise<void>;
install(): void;
private _generateTSConfigJson;
private _generatePackageJson;
private _getPackageVersion;
private _getEslintExtendRules;
}