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