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.
==== esDecorators-classDeclaration-accessors-static.ts (0 errors) ====
    declare let dec: any;
    
    const method3 = "method3";
    
    class C {
        @dec(11) static get method1() { return 0; }
        @dec(12) static set method1(value) {}
        @dec(21) static get ["method2"]() { return 0; }
        @dec(22) static set ["method2"](value) {}
        @dec(31) static get [method3]() { return 0; }
        @dec(32) static set [method3](value) {}
    }
    