error TS5101: Option 'outFile' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
error TS6082: Only 'amd' and 'system' modules are supported alongside --outFile.


!!! error TS5101: Option 'outFile' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
!!! error TS6082: Only 'amd' and 'system' modules are supported alongside --outFile.
==== A:/bar.ts (0 errors) ====
    import {z} from "./foo";
    export var x = z + z;
    
==== A:/foo.ts (0 errors) ====
    import {pi} from "B:/baz";
    export var i = Math.sqrt(-1);
    export var z = pi * pi;
    
==== B:/baz.ts (0 errors) ====
    import {x} from "A:/bar";
    import {i} from "A:/foo";
    export var pi = Math.PI;
    export var y = x * i;