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.
==== sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts (0 errors) ====
    declare var console: {
        log(msg: any): void;
    }
    type Robot = [number, string, string];
    type MultiSkilledRobot = [string, [string, string]];
    
    let robotA: Robot = [1, "mower", "mowing"];
    let robotB: Robot = [2, "trimmer", "trimming"];
    let robots = [robotA, robotB];
    function getRobots() {
        return robots;
    }
    
    let multiRobotA: MultiSkilledRobot = ["mower", ["mowing", ""]];
    let multiRobotB: MultiSkilledRobot = ["trimmer", ["trimming", "edging"]];
    let multiRobots = [multiRobotA, multiRobotB];
    function getMultiRobots() {
        return multiRobots;
    }
    
    let nameA: string, primarySkillA: string, secondarySkillA: string;
    let numberB: number, nameB: string;
    let numberA2: number, nameA2: string, skillA2: string, nameMA: string;
    let numberA3: number, robotAInfo: (number | string)[], multiRobotAInfo: (string | [string, string])[];
    
    for ([, nameA = "noName"] of robots) {
        console.log(nameA);
    }
    for ([, nameA = "noName"] of getRobots()) {
        console.log(nameA);
    }
    for ([, nameA = "noName"] of [robotA, robotB]) {
        console.log(nameA);
    }
    for ([, [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of multiRobots) {
        console.log(primarySkillA);
    }
    for ([, [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of getMultiRobots()) {
        console.log(primarySkillA);
    }
    for ([, [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of [multiRobotA, multiRobotB]) {
        console.log(primarySkillA);
    }
    
    for ([numberB = -1] of robots) {
        console.log(numberB);
    }
    for ([numberB = -1] of getRobots()) {
        console.log(numberB);
    }
    for ([numberB = -1] of [robotA, robotB]) {
        console.log(numberB);
    }
    for ([nameB = "noName"] of multiRobots) {
        console.log(nameB);
    }
    for ([nameB = "noName"] of getMultiRobots()) {
        console.log(nameB);
    }
    for ([nameB = "noName"] of [multiRobotA, multiRobotB]) {
        console.log(nameB);
    }
    
    for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of robots) {
        console.log(nameA2);
    }
    for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of getRobots()) {
        console.log(nameA2);
    }
    for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of [robotA, robotB]) {
        console.log(nameA2);
    }
    for ([nameMA = "noName", [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of multiRobots) {
        console.log(nameMA);
    }
    for ([nameMA = "noName", [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of getMultiRobots()) {
        console.log(nameMA);
    }
    for ([nameMA = "noName", [
        primarySkillA = "primary",
        secondarySkillA = "secondary"
    ] = ["skill1", "skill2"]] of [multiRobotA, multiRobotB]) {
        console.log(nameMA);
    }
    
    for ([numberA3 = -1, ...robotAInfo] of robots) {
        console.log(numberA3);
    }
    for ([numberA3 = -1, ...robotAInfo] of getRobots()) {
        console.log(numberA3);
    }
    for ([numberA3 = -1, ...robotAInfo] of [robotA, robotB]) {
        console.log(numberA3);
    }