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.
==== declFileIndexSignatures_0.ts (0 errors) ====
    export interface IStringIndexSignature {
        [s: string]: string;
    }
    export interface INumberIndexSignature {
        [n: number]: number;
    }
    
    export interface IBothIndexSignature {
        [s: string]: any;
        [n: number]: number;
    }
    
    export interface IIndexSignatureWithTypeParameter<T> {
        [a: string]: T;
    }
    
==== declFileIndexSignatures_1.ts (0 errors) ====
    interface IGlobalStringIndexSignature {
        [s: string]: string;
    }
    interface IGlobalNumberIndexSignature {
        [n: number]: number;
    }
    
    interface IGlobalBothIndexSignature {
        [s: string]: any;
        [n: number]: number;
    }
    
    interface IGlobalIndexSignatureWithTypeParameter<T> {
        [a: string]: T;
    }