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-asyncFunctionArrayLiterals.ts (0 errors) ====
    declare var x, y, z, a;
    
    async function arrayLiteral0() {
        x = [await y, z];
    }
    
    async function arrayLiteral1() {
        x = [y, await z];
    }
    
    async function arrayLiteral2() {
        x = [...(await y), z];
    }
    
    async function arrayLiteral3() {
        x = [...y, await z];
    }
    
    async function arrayLiteral4() {
        x = [await y, ...z];
    }
    
    async function arrayLiteral5() {
        x = [y, ...(await z)];
    }
    
    async function arrayLiteral6() {
        x = [y, await z, a];
    }
    
    async function arrayLiteral7() {
        x = [await y, z, await a];
    }