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


!!! error TS5107: Option 'target=ES5' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== t3.ts (0 errors) ====
    import a = require("./t1");
    a.default;
    import b from "./t1";
    b;
    import * as c from "./t1";
    c.default;
    import { default as d } from "./t1";
    d;
    import e1, * as e2 from "./t1";
    e1;
    e2.default;
    import f1, { default as f2 } from "./t1";
    f1;
    f2;
    export { a, b, c, d, e1, e2, f1, f2 };
    
==== t1.ts (0 errors) ====
    export default "hello";
    
==== t2.ts (0 errors) ====
    import a = require("./t1");
    a.default;
    import b from "./t1";
    b;
    import * as c from "./t1";
    c.default;
    import { default as d } from "./t1";
    d;
    import e1, * as e2 from "./t1";
    e1;
    e2.default;
    import f1, { default as f2 } from "./t1";
    f1;
    f2;
    import "./t1";
    