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.
==== genericTypeWithMultipleBases2.ts (0 errors) ====
    export interface I1 {
        m1: () => void;
    }
     
    export interface I2 {
        m2: () => void;
    }
     
    export interface I3<T> extends I2, I1 {
        p1: T;
    }
     
    var x: I3<number>;
    x.p1;
    x.m1();
    x.m2();
    
    