@@ -12,6 +12,7 @@ namespace ts {
1212}
1313
1414/* @internal */
15+ // eslint-disable-next-line no-redeclare
1516namespace ts {
1617 export const resolvingEmptyArray : never [ ] = [ ] as never [ ] ;
1718 export const emptyMap = createMap < never > ( ) as ReadonlyMap < never > & ReadonlyPragmaMap ;
@@ -4615,6 +4616,7 @@ namespace ts {
46154616 }
46164617}
46174618
4619+ // eslint-disable-next-line no-redeclare
46184620namespace ts {
46194621 export function getDefaultLibFileName ( options : CompilerOptions ) : string {
46204622 switch ( options . target ) {
@@ -5391,6 +5393,7 @@ namespace ts {
53915393}
53925394
53935395// Simple node tests of the form `node.kind === SyntaxKind.Foo`.
5396+ // eslint-disable-next-line no-redeclare
53945397namespace ts {
53955398 // Literals
53965399 export function isNumericLiteral ( node : Node ) : node is NumericLiteral {
@@ -6129,6 +6132,7 @@ namespace ts {
61296132//
61306133// All node tests in the following list should *not* reference parent pointers so that
61316134// they may be used with transformations.
6135+ // eslint-disable-next-line no-redeclare
61326136namespace ts {
61336137 /* @internal */
61346138 export function isSyntaxList ( n : Node ) : n is SyntaxList {
@@ -6971,8 +6975,8 @@ namespace ts {
69716975 }
69726976}
69736977
6974-
69756978/* @internal */
6979+ // eslint-disable-next-line no-redeclare
69766980namespace ts {
69776981 export function isNamedImportsOrExports ( node : Node ) : node is NamedImportsOrExports {
69786982 return node . kind === SyntaxKind . NamedImports || node . kind === SyntaxKind . NamedExports ;
@@ -7588,6 +7592,7 @@ namespace ts {
75887592}
75897593
75907594/* @internal */
7595+ // eslint-disable-next-line no-redeclare
75917596namespace ts {
75927597 export function getPathComponentsRelativeTo ( from : string , to : string , stringEqualityComparer : ( a : string , b : string ) => boolean , getCanonicalFileName : GetCanonicalFileName ) {
75937598 const fromComponents = reducePathComponents ( getPathComponents ( from ) ) ;
0 commit comments