error TS5107: Option 'module=AMD' 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.


!!! error TS5107: Option 'module=AMD' 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.
==== commentsMultiModuleMultiFile_1.ts (0 errors) ====
    import m = require('commentsMultiModuleMultiFile_0');
    /** this is multi module 3 comment*/
    export namespace multiM {
        /** class d comment*/
        export class d {
        }
    
        /// class f comment
        export class f {
        }
    }
    new multiM.d();
==== commentsMultiModuleMultiFile_0.ts (0 errors) ====
    /** this is multi declare module*/
    export namespace multiM {
        /// class b comment
        export class b {
        }
    }
    /** thi is multi module 2*/
    export namespace multiM {
        /** class c comment*/
        export class c {
        }
    
        // class e comment
        export class e {
        }
    }
    
    new multiM.b();
    new multiM.c();
    