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 'module=AMD' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== declFileExportImportChain_d.ts (0 errors) ====
    import c = require("declFileExportImportChain_c");
    export var x: c.b1.a.m2.c1;
==== declFileExportImportChain_a.ts (0 errors) ====
    namespace m1 {
        export namespace m2 {
            export class c1 {
            }
        }
    }
    export = m1;
    
==== declFileExportImportChain_b.ts (0 errors) ====
    export import a = require("declFileExportImportChain_a");
    
==== declFileExportImportChain_b1.ts (0 errors) ====
    import b = require("declFileExportImportChain_b");
    export = b;
    
==== declFileExportImportChain_c.ts (0 errors) ====
    export import b1 = require("declFileExportImportChain_b1");
    