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.
==== test1.ts (0 errors) ====
    /*! Copyright 2015 MyCompany Inc. */
    
    /**
     * Hello class
     */
    class Hello {
    
    }
    
==== test2.ts (0 errors) ====
    /* A comment at the top of the file. */
    
    /**
     * Hi class
     */
    class Hi {
    
    }
    
==== test3.ts (0 errors) ====
    // A one-line comment at the top of the file.
    
    /**
     * Hola class
     */
    class Hola {
    
    }
    