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.
==== t1.ts (0 errors) ====
    var v = 1;
    function f() { }
    class C {
    }
    interface I {
    }
    enum E {
        A, B, C
    }
    const enum D {
        A, B, C
    }
    namespace M {
        export var x;
    }
    namespace N {
        export interface I {
        }
    }
    type T = number;
    import a = M.x;
    
    export { v, f, C, I, E, D, M, N, T, a };
    
==== t2.ts (0 errors) ====
    export { v, f, C, I, E, D, M, N, T, a } from "./t1";
    
==== t3.ts (0 errors) ====
    import { v, f, C, I, E, D, M, N, T, a } from "./t1";
    export { v, f, C, I, E, D, M, N, T, a };
    