schema.d.ts 517 B

123456789101112
  1. /**
  2. * Generates and configures environment files for your project. Environment files allow you
  3. * to define different settings and configurations for various environments, such as
  4. * development, testing, and production. This schematic helps you create and manage these
  5. * files, making it easier to customize your application's behavior for each environment.
  6. */
  7. export type Schema = {
  8. /**
  9. * The name of the project where the environment files should be created or updated.
  10. */
  11. project: string;
  12. };