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.
==== items.js (0 errors) ====
    export const a = 1;
    export const b = 2;
    export const c = 3;
    
==== justone.js (0 errors) ====
    export { a, b, c } from "./items";
    
==== two.js (0 errors) ====
    export { a } from "./items";
    export { b, c } from "./items";
    
==== multiple.js (0 errors) ====
    export {a, b} from "./items";
    export {a as aa} from "./two";
    export {b as bb} from "./two";
    export {c} from "./two"
    export {c as cc} from "./items";
    