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.
==== file2.ts (0 errors) ====
    import appJs = require("file1");
    import Services = appJs.Services;
    import UserServices = Services.UserServices;
    var x = new UserServices().getUserName();
    
==== file1.ts (0 errors) ====
    namespace App {
        export namespace Services {
            export class UserServices {
                public getUserName(): string {
                    return "Bill Gates";
                }
            }
        }
    }
    
    import Mod = App;
    export = Mod;
    