@nomadmystic/wordpress-scaffold-cli
Version:
This project is created to speed up WordPress development
16 lines (14 loc) • 464 B
text/typescript
import ActivePlugins from './interface-active-plugins.js';
export default interface ProjectConfig {
'project-name': string;
'project-namespace': string;
'active-them': string
'active-theme-path': string;
'active-plugins': Array<ActivePlugins>;
'site-url': string;
'dev-site-url': string;
'absolute-project-folder': string;
'absolute-themes-folder': string;
'theme-description': string;
'front-end-framework': string;
}