mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-20 21:42:38 +08:00
All TypeScript files have been updated to pass the new eslint-based linting checks. eslint compatible disabling comments have also been added in place of the previous tslint comments.
24 lines
752 B
TypeScript
24 lines
752 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
// Workaround for https://github.com/bazelbuild/rules_nodejs/issues/1033
|
|
// Alternative approach instead of https://github.com/angular/angular/pull/33226
|
|
declare module '@babel/core' {
|
|
export * from '@types/babel__core';
|
|
}
|
|
declare module '@babel/generator' {
|
|
export { default } from '@types/babel__generator';
|
|
}
|
|
declare module '@babel/traverse' {
|
|
export { default } from '@types/babel__traverse';
|
|
}
|
|
declare module '@babel/template' {
|
|
export { default } from '@types/babel__template';
|
|
}
|