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


!!! error TS5107: Option 'module=UMD' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== 0.ts (0 errors) ====
    export const a = 1;
    export const b = 2;
    
==== 1.ts (0 errors) ====
    export * as default from './0';
    
==== 11.ts (0 errors) ====
    import * as ns from './0';
    export default ns;
    
==== 2.ts (0 errors) ====
    import foo from './1'
    import foo1 from './11'
    
    foo.a;
    foo1.a;
    
    foo.b;
    foo1.b;