schema.d.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 name of the application folder.
  7. */
  8. appDir?: string;
  9. /**
  10. * The app identifier to use for transition.
  11. */
  12. appId?: string;
  13. /**
  14. * The name of the related client app. Required in place of "project".
  15. */
  16. clientProject: string;
  17. /**
  18. * The name of the main entry-point file.
  19. */
  20. main?: string;
  21. /**
  22. * The name of the root NgModule class.
  23. */
  24. rootModuleClassName?: string;
  25. /**
  26. * The name of the root NgModule file.
  27. */
  28. rootModuleFileName?: string;
  29. /**
  30. * When true, does not install packages for dependencies.
  31. */
  32. skipInstall?: boolean;
  33. /**
  34. * The name of the test entry-point file.
  35. * @deprecated This option has no effect.
  36. */
  37. test?: string;
  38. /**
  39. * The name of the TypeScript configuration file for tests.
  40. * @deprecated This option has no effect.
  41. */
  42. testTsconfigFileName?: string;
  43. /**
  44. * The name of the TypeScript configuration file.
  45. */
  46. tsconfigFileName?: string;
  47. }