schema.d.ts 695 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Pass this schematic to the "run" command to set up server-side rendering for an app.
  3. */
  4. export interface Schema {
  5. /**
  6. * The application identifier to use for transition.
  7. * @deprecated This option is no longer used.
  8. */
  9. appId?: string;
  10. /**
  11. * The name of the main entry-point file.
  12. */
  13. main?: string;
  14. /**
  15. * The name of the project.
  16. */
  17. project: string;
  18. /**
  19. * The name of the root NgModule class.
  20. */
  21. rootModuleClassName?: string;
  22. /**
  23. * The name of the root NgModule file.
  24. */
  25. rootModuleFileName?: string;
  26. /**
  27. * Do not install packages for dependencies.
  28. */
  29. skipInstall?: boolean;
  30. }