error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.


!!! error TS5107: Option 'target=ES3' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
==== tests/cases/conformance/dynamicImport/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
    }
    