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.
==== commentsemitComments.ts (0 errors) ====
    /** Variable comments*/
    var myVariable = 10;
    
    /** function comments*/
    function foo(/** parameter comment*/p: number) {
    }
    
    /** variable with function type comment*/
    var fooVar: () => void;
    foo(50);
    fooVar();
    
    /**class comment*/
    class c {
        /** constructor comment*/
        constructor() {
        }
    
        /** property comment */
        public b = 10;
    
        /** function comment */
        public myFoo() {
            return this.b;
        }
    
        /** getter comment*/
        public get prop1() {
            return this.b;
        }
    
        /** setter comment*/
        public set prop1(val: number) {
            this.b = val;
        }
    
        /** overload signature1*/
        public foo1(a: number): string;
        /** Overload signature 2*/
        public foo1(b: string): string;
        /** overload implementation signature*/
        public foo1(aOrb) {
            return aOrb.toString();
        }
    }
    
    /**instance comment*/
    var i = new c();
    
    /** interface comments*/
    interface i1 {
        /** caller comments*/
        (a: number): number;
    
        /** new comments*/
        new (b: string);
    
        /**indexer property*/
        [a: number]: string;
    
        /** function property;*/
        myFoo(/*param prop*/a: number): string;
    
        /** prop*/
        prop: string;
    }
    
    /**interface instance comments*/
    var i1_i: i1;
    
    /** this is module comment*/
    namespace m1 {
        /** class b */
        export class b {
            constructor(public x: number) {
    
            }
        }
    
        /// module m2
        export namespace m2 {
        }
    }
    
    /// this is x
    declare var x;
    