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.
==== declFileTypeAnnotationTupleType.ts (0 errors) ====
    class c {
    }
    namespace m {
        export class c {
        }
        export class g<T> {
        }
    }
    class g<T> {
    }
    
    // Just the name
    var k: [c, m.c] = [new c(), new m.c()];
    var l = k;
    
    var x: [g<string>, m.g<number>, () => c] = [new g<string>(), new m.g<number>(), () => new c()];
    var y = x;