error TS5101: Option 'outFile' 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.


!!! error TS5101: Option 'outFile' 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.
==== a/bar.ts (0 errors) ====
    import {z} from "./foo";
    export var x = z + z;
    
==== a/foo.ts (0 errors) ====
    import {pi} from "../baz";
    export var i = Math.sqrt(-1);
    export var z = pi * pi;
    
==== baz.ts (0 errors) ====
    import {x} from "a/bar";
    import {i} from "a/foo";
    export var pi = Math.PI;
    export var y = x * i;