error TS5101: Option 'outFile' 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.
==== /a/index.ts (0 errors) ====
    export * from "./src/"
==== /b/index.ts (0 errors) ====
    export * from "./src/"
==== /b/src/index.ts (0 errors) ====
    export class B {}
==== /a/src/index.ts (0 errors) ====
    import { B } from "b";
    
    export default function () {
    	return new B();
    }