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.
==== withImportDecl_1.ts (0 errors) ====
    ///<reference path='withImportDecl_0.ts'/>
    var simpleVar;
    
    var anotherVar: any;
    var varWithSimpleType: number;
    var varWithArrayType: number[];
    
    var varWithInitialValue = 30;
    
    var withComplicatedValue = { x: 30, y: 70, desc: "position" };
    
    declare var declaredVar;
    declare var declareVar2
    
    declare var declaredVar;
    declare var deckareVarWithType: number;
    
    var arrayVar: string[] = ['a', 'b'];
    
    
    function simpleFunction() {
        return {
            x: "Hello",
            y: "word",
            n: 2
        };
    }
    
    namespace m1 {
        export function foo() {
            return "Hello";
        }
    }
    
    import m3 = require("withImportDecl_0");
    
    var b = new m3.A();
    b.foo;
==== withImportDecl_0.ts (0 errors) ====
    export class A { foo: string; }
    