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.
==== foo_2.ts (0 errors) ====
    import foo0 = require("./foo_0");
    namespace Foo {
    	export var x = foo0.x;
    }
    export = Foo;
    
==== foo_0.ts (0 errors) ====
    import foo1 = require('./foo_1');
    namespace Foo {
    	export var x = foo1.x;
    }
    export = Foo;
    
==== foo_1.ts (0 errors) ====
    import foo2 = require("./foo_2");
    namespace Foo {
    	export var x = foo2.x;
    }
    export = Foo;
    