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.
==== declFileConstructSignatures_0.ts (0 errors) ====
    export interface IConstructSignature {
        /** This comment should appear for foo*/
        new (): string;
    }
    
    export interface IConstructSignatureWithParameters {
        /** This is comment for function signature*/
        new (/** this is comment about a*/a: string,
            /** this is comment for b*/
            b: number);
    }
    
    export interface IConstructSignatureWithRestParameters {
        new (a: string, ...rests: string[]): string;
    }
    
    export interface IConstructSignatureWithOverloads {
        new (a: string): string;
        new (a: number): number;
    }
    
    export interface IConstructSignatureWithTypeParameters<T> {
        /** This comment should appear for foo*/
        new (a: T): T;
    }
    
    export interface IConstructSignatureWithOwnTypeParametes {
        new <T extends IConstructSignature>(a: T): T;
    }
    
==== declFileConstructSignatures_1.ts (0 errors) ====
    interface IGlobalConstructSignature {
        /** This comment should appear for foo*/
        new (): string;
    }
    
    interface IGlobalConstructSignatureWithParameters {
        /** This is comment for function signature*/
        new (/** this is comment about a*/a: string,
            /** this is comment for b*/
            b: number);
    }
    
    interface IGlobalConstructSignatureWithRestParameters {
    
        new (a: string, ...rests: string[]): string;
    
    }
    
    interface IGlobalConstructSignatureWithOverloads {
        new (a: string): string;
        new (a: number): number;
    }
    
    interface IGlobalConstructSignatureWithTypeParameters<T> {
        /** This comment should appear for foo*/
        new (a: T): T;
    }
    
    interface IGlobalConstructSignatureWithOwnTypeParametes {
        new <T extends IGlobalConstructSignature>(a: T): T;
    }