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.
==== declFileExportImportChain2_d.ts (0 errors) ====
    import c = require("declFileExportImportChain2_c");
    export var x: c.b.m2.c1;
==== declFileExportImportChain2_a.ts (0 errors) ====
    namespace m1 {
        export namespace m2 {
            export class c1 {
            }
        }
    }
    export = m1;
    
==== declFileExportImportChain2_b.ts (0 errors) ====
    import a = require("declFileExportImportChain2_a");
    export = a;
    
==== declFileExportImportChain2_c.ts (0 errors) ====
    export import b = require("declFileExportImportChain2_b");
    