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.
==== methodContainingLocalFunction.ts (0 errors) ====
    // The first case here (BugExhibition<T>) caused a crash. Try with different permutations of features.
    class BugExhibition<T> {
        public exhibitBug() {
            function localFunction() { }
            var x: { (): void; };
            x = localFunction;
        }
    }
    
    class BugExhibition2<T> {
        private static get exhibitBug() {
            function localFunction() { }
            var x: { (): void; };
            x = localFunction;
            return null;
        }
    }
    
    class BugExhibition3<T> {
        public exhibitBug() {
            function localGenericFunction<U>(u?: U) { }
            var x: { (): void; };
            x = localGenericFunction;
        }
    }
    
    class C {
        exhibit() {
            var funcExpr = <U>(u?: U) => { };
            var x: { (): void; };
            x = funcExpr;
        }
    }
    
    namespace M {
        export function exhibitBug() {
            function localFunction() { }
            var x: { (): void; };
            x = localFunction;
        }
    }
    
    enum E {
        A = (() => {
            function localFunction() { }
            var x: { (): void; };
            x = localFunction;
            return 0;
        })()
    }