update-app-tsconfigs.d.ts 284 B

12345678
  1. import { Rule } from '@angular-devkit/schematics';
  2. /**
  3. * Update the tsconfig files for applications
  4. * - Removes enableIvy: true
  5. * - Sets stricter file inclusions
  6. * - Sets module compiler option to esnext or commonjs
  7. */
  8. export declare function updateApplicationTsConfigs(): Rule;