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.
==== genericClassesInModule2.ts (0 errors) ====
    export class A<T1>{
        constructor( public callback: (self: A<T1>) => void) {
            var child = new B(this);
        }
        AAA( callback: (self: A<T1>) => void) {
            var child = new B(this);
        }
    }
    
    export interface C<T1>{
        child: B<T1>;
        (self: C<T1>): void;
        new(callback: (self: C<T1>) => void)
    }
    
    export class B<T2> {
        constructor(public parent: T2) { }
    }
    
    