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.
==== test.ts (0 errors) ====
    export async function fn() {
        const req = await import('./test') // ONE
    }
    
    export class cl1 {
        public async m() {
            const req = await import('./test') // TWO
        }
    }
    
    export const obj = {
        m: async () => {
            const req = await import('./test') // THREE
        }
    }
    
    export class cl2 {
        public p = {
            m: async () => {
                const req = await import('./test') // FOUR
            }
        }
    }
    
    export const l = async () => {
        const req = await import('./test') // FIVE
    }
    