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.
==== F1.ts (0 errors) ====
    async function * f1() {
    }
==== F2.ts (0 errors) ====
    async function * f2() {
        const x = yield;
    }
==== F3.ts (0 errors) ====
    async function * f3() {
        const x = yield 1;
    }
==== F4.ts (0 errors) ====
    async function * f4() {
        const x = yield* [1];
    }
==== F5.ts (0 errors) ====
    async function * f5() {
        const x = yield* (async function*() { yield 1; })();
    }
==== F6.ts (0 errors) ====
    async function * f6() {
        const x = await 1;
    }
==== F7.ts (0 errors) ====
    async function * f7() {
        return 1;
    }
    