error TS5102: Option 'downlevelIteration' has been removed. Please remove it from your configuration.


!!! error TS5102: Option 'downlevelIteration' has been removed. Please remove it from your configuration.
==== destructuringParameterDeclaration7ES5iterable.ts (0 errors) ====
    interface ISomething {
        foo: string,
        bar: string
    }
    
    function foo({}, {foo, bar}: ISomething) {}
    
    function baz([], {foo, bar}: ISomething) {}
    
    function one([], {}) {}
    
    function two([], [a, b, c]: number[]) {}
    