options.d.ts 581 B

1234567891011121314151617181920
  1. /**
  2. * @license
  3. * Copyright Google Inc. All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. export declare const NodePackageName = "node-package";
  9. export interface NodePackageTaskFactoryOptions {
  10. rootDirectory?: string;
  11. packageManager?: string;
  12. allowPackageManagerOverride?: boolean;
  13. }
  14. export interface NodePackageTaskOptions {
  15. command: string;
  16. quiet?: boolean;
  17. workingDirectory?: string;
  18. packageName?: string;
  19. packageManager?: string;
  20. }