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.
==== t1.ts (0 errors) ====
    let as = 100;
    
    export { as as return, as };
    
==== t2.ts (0 errors) ====
    import * as as from "./t1";
    var x = as.as;
    var y = as.return;
    
==== t3.ts (0 errors) ====
    import { as as as } from "./t1";
    
==== t4.ts (0 errors) ====
    import { as } from "./t1";