error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.


!!! error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
==== tests/cases/compiler/taggedTemplateStringsWithCurriedFunction.ts (0 errors) ====
    // Originated from #38558
    
    const f = _ => (..._) => "";
    
    f({ ...{ x: 0 } })``;
    f({ ...{ x: 0 } })`x`;
    f({ ...{ x: 0 } })`x${f}x`;
    f({ ...{ x: 0 }, y: (() => 1)() })``;
    f({ x: (() => 1)(), ...{ y: 1 } })``;
    