error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.


!!! error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
==== tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/ambientAccessors.ts (0 errors) ====
    // ok to use accessors in ambient class in ES3
    declare class C {
        static get a(): string;
        static set a(value: string);
    
        private static get b(): string;
        private static set b(foo: string);
    
        get x(): string;
        set x(value: string);
    
        private get y(): string;
        private set y(foo: string);
    }