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-asyncFunctionForStatements.ts (0 errors) ====
    declare var x, y, z, a, b, c;
    
    async function forStatement0() {
        for (x; y; z) { a; }
    }
    
    async function forStatement1() {
        for (await x; y; z) { a; }
    }
    
    async function forStatement2() {
        for (x; await y; z) { a; }
    }
    
    async function forStatement3() {
        for (x; y; await z) { a; }
    }
    
    async function forStatement4() {
        for (x; y; z) { await a; }
    }
    
    async function forStatement5() {
        for (var b; y; z) { a; }
    }
    
    async function forStatement6() {
        for (var c = x; y; z) { a; }
    }