error TS5107: Option 'module=System' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


!!! error TS5107: Option 'module=System' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== file1.ts (0 errors) ====
    import * as moduleB from "./file2"
    
    declare function use(v: any): void;
    
    use(moduleB.value);
    use(moduleB.moduleC);
    use(moduleB.moduleCStar);
    
==== file2.ts (0 errors) ====
    import * as moduleCStar from "./file3"
    import {value2} from "./file4"
    import moduleC from "./file3"
    import {value} from "./file3"
    
    export {
        moduleCStar,
        moduleC,
        value
    }
    
==== file3.ts (0 errors) ====
    export var value = "youpi";
    export default value;
    
==== file4.ts (0 errors) ====
    export var value2 = "v";