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.
==== es5-asyncFunctionHoisting.ts (0 errors) ====
    declare var y;
    
    async function hoisting() {
        var a0, a1 = 1;
        function z() {
            var b0, b1 = 1;
        }
    
        if (true) {
            var c0, c1 = 1;
        }
    
        for (var a = 0; y;) {
    
        }
    
        for (var b in y) {
    
        }
    
        for (var c of y) {
    
        }
    }
    
    async function hoistingWithAwait() {
        var a0, a1 = 1;
    
        function z() {
            var b0, b1 = 1;
        }
    
        await 0;
    
        if (true) {
            var c0, c1 = 1;
        }
    
        for (var a = 0; y;) {
    
        }
    
        for (var b in y) {
    
        }
    
        for (var c of y) {
    
        }
    }
    
    