@@ -12,7 +12,6 @@ namespace ts {
1212}
1313
1414/* @internal */
15- // eslint-disable-next-line no-redeclare
1615namespace ts {
1716 export const resolvingEmptyArray : never [ ] = [ ] as never [ ] ;
1817 export const emptyMap = createMap < never > ( ) as ReadonlyMap < never > & ReadonlyPragmaMap ;
@@ -4667,7 +4666,6 @@ namespace ts {
46674666 }
46684667}
46694668
4670- // eslint-disable-next-line no-redeclare
46714669namespace ts {
46724670 export function getDefaultLibFileName ( options : CompilerOptions ) : string {
46734671 switch ( options . target ) {
@@ -5449,7 +5447,6 @@ namespace ts {
54495447}
54505448
54515449// Simple node tests of the form `node.kind === SyntaxKind.Foo`.
5452- // eslint-disable-next-line no-redeclare
54535450namespace ts {
54545451 // Literals
54555452 export function isNumericLiteral ( node : Node ) : node is NumericLiteral {
@@ -6192,7 +6189,6 @@ namespace ts {
61926189//
61936190// All node tests in the following list should *not* reference parent pointers so that
61946191// they may be used with transformations.
6195- // eslint-disable-next-line no-redeclare
61966192namespace ts {
61976193 /* @internal */
61986194 export function isSyntaxList ( n : Node ) : n is SyntaxList {
@@ -7036,7 +7032,6 @@ namespace ts {
70367032}
70377033
70387034/* @internal */
7039- // eslint-disable-next-line no-redeclare
70407035namespace ts {
70417036 export function isNamedImportsOrExports ( node : Node ) : node is NamedImportsOrExports {
70427037 return node . kind === SyntaxKind . NamedImports || node . kind === SyntaxKind . NamedExports ;
@@ -7664,7 +7659,6 @@ namespace ts {
76647659}
76657660
76667661/* @internal */
7667- // eslint-disable-next-line no-redeclare
76687662namespace ts {
76697663 export function getPathComponentsRelativeTo ( from : string , to : string , stringEqualityComparer : ( a : string , b : string ) => boolean , getCanonicalFileName : GetCanonicalFileName ) {
76707664 const fromComponents = reducePathComponents ( getPathComponents ( from ) ) ;
0 commit comments