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.
==== returnStatementNoAsiAfterTransform.ts (0 errors) ====
    declare var a: any;
    
    function t1() {
        return (
            // comment
            a as any
        );
    }
    function t2() {
        return (
            // comment
            a as any
        ) + 1;
    }
    function t3() {
        return (
            // comment
            a as any
        ) ? 0 : 1;
    }
    function t4() {
        return (
            // comment
            a as any
        ).b;
    }
    function t5() {
        return (
            // comment
            a as any
        )[a];
    }
    function t6() {
        return (
            // comment
            a as any
        )();
    }
    function t7() {
        return (
            // comment
            a as any
        )``;
    }
    function t8() {
        return (
            // comment
            a as any
        ) as any;
    }
    function t9() {
        return (
            // comment
            a as any
        ) satisfies any;
    }
    function t10() {
        return (
            // comment
            a as any
        )!;
    }
    