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.
==== declarationEmitClassMemberNameConflict.ts (0 errors) ====
    export class C1 {
        C1() { } // has to be the same as the class name
    
        bar() {
            return function (t: typeof C1) {
            };
        }
    }
    
    export class C2 {
        C2: any // has to be the same as the class name
    
        bar() {
            return function (t: typeof C2) {
            };
        }
    }
    
    export class C3 {
        get C3() { return 0; } // has to be the same as the class name
    
        bar() {
            return function (t: typeof C3) {
            };
        }
    }
    
    export class C4 {
        set C4(v) { } // has to be the same as the class name
    
        bar() {
            return function (t: typeof C4) {
            };
        }
    }