Skip to content

Commit

Permalink
refactor: remove unused env property from ExpressoConfig interface
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Oct 29, 2024
1 parent 5995b1a commit 97663e8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/config/project-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,13 @@ export const enum Pattern {
* @property {Pattern} scaffoldPattern - The pattern to use when scaffolding files.
* @property {string} sourceRoot - The root directory for the source files.
* @property {boolean} opinionated - Whether or not to use the opinionated configuration.
* @property {object} env - The environment variables to use for development and production.
* @property {IProviders} providers - Specific configuration for each provider added.
* @public API
*/
export interface ExpressoConfig {
scaffoldPattern: Pattern;
sourceRoot: string;
opinionated: boolean;
env?: {
development?: string;
production?: string;
};
scaffoldSchematics?: {
entity?: string;
controller?: string;
Expand Down

0 comments on commit 97663e8

Please sign in to comment.