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.
==== commentsMultiModuleSingleFile.ts (0 errors) ====
    /** this is multi declare module*/
    namespace multiM {
        /** class b*/
        export class b {
        }
    
        // class d
        export class d {
        }
    }
    
    /// this is multi module 2
    namespace multiM {
        /** class c comment*/
        export class c {
        }
    
        /// class e
        export class e {
        }
    }
    new multiM.b();
    new multiM.c();