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.
==== declFileTypeAnnotationVisibilityErrorVariableDeclaration.ts (0 errors) ====
    namespace m {
        class private1 {
        }
    
        export class public1 {
        }
    
        // Directly using names from this module
        var x: private1;
        var y = new private1();
    
        export var k: private1;
        export var l = new private1();
    
        var x2: public1;
        var y2 = new public1();
    
        export var k2: public1;
        export var l2 = new public1();
    
        namespace m2 {
            export class public2 {
            }
        }
    
        var x3: m2.public2;
        var y3 = new m2.public2();
    
        export var k3: m2.public2;
        export var l3 = new m2.public2();
    }
    