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.
==== newTarget.es5.ts (0 errors) ====
    class A {
        constructor() {
            const a = new.target;
            const b = () => new.target;
        }
        static c = function () { return new.target; }
        d = function () { return new.target; }
    }
    
    class B extends A {
        constructor() {
            super();
            const e = new.target;
            const f = () => new.target;
        }
    }
    
    function f1() {
        const g = new.target;
        const h = () => new.target;
    }
    
    const f2 = function () {
        const i = new.target;
        const j = () => new.target;
    }
    
    const O = {
        k: function () { return new.target; }
    };
    
    