error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


!!! error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== declFileCallSignatures_0.ts (0 errors) ====
    export interface ICallSignature {
        /** This comment should appear for foo*/
        (): string;
    }
    
    export interface ICallSignatureWithParameters {
        /** This is comment for function signature*/
        (/** this is comment about a*/a: string,
            /** this is comment for b*/
            b: number): void;
    }
    
    export interface ICallSignatureWithRestParameters {
        (a: string, ...rests: string[]): string;
    }
    
    export interface ICallSignatureWithOverloads {
        (a: string): string;
        (a: number): number;
    }
    
    export interface ICallSignatureWithTypeParameters<T> {
        /** This comment should appear for foo*/
        (a: T): string;
    }
    
    export interface ICallSignatureWithOwnTypeParametes {
        <T extends ICallSignature>(a: T): string;
    }
    
==== declFileCallSignatures_1.ts (0 errors) ====
    interface IGlobalCallSignature {
        /** This comment should appear for foo*/
        (): string;
    }
    
    interface IGlobalCallSignatureWithParameters {
        /** This is comment for function signature*/
        (/** this is comment about a*/a: string,
            /** this is comment for b*/
            b: number): void;
    }
    
    interface IGlobalCallSignatureWithRestParameters {
    
        (a: string, ...rests: string[]): string;
    
    }
    
    interface IGlobalCallSignatureWithOverloads {
        (a: string): string;
        (a: number): number;
    }
    
    interface IGlobalCallSignatureWithTypeParameters<T> {
        /** This comment should appear for foo*/
        (a: T): string;
    }
    
    interface IGlobalCallSignatureWithOwnTypeParametes {
        <T extends IGlobalCallSignature>(a: T): string;
    }