schema.d.ts 648 B

12345678910111213141516171819202122
  1. /**
  2. * Generates configuration files for your project. These files control various aspects of
  3. * your project's build process, testing, and browser compatibility. This schematic helps
  4. * you create or update essential configuration files with ease.
  5. */
  6. export type Schema = {
  7. /**
  8. * The name of the project where the configuration file should be created or updated.
  9. */
  10. project: string;
  11. /**
  12. * Specifies the type of configuration file to generate.
  13. */
  14. type: Type;
  15. };
  16. /**
  17. * Specifies the type of configuration file to generate.
  18. */
  19. export declare enum Type {
  20. Browserslist = "browserslist",
  21. Karma = "karma"
  22. }