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.
==== emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts (0 errors) ====
    var object = {
        _0: 2,
        get 0() {
            return this._0;
        },
        set 0(x: number) {
            this._0 = x;
        },
    }
    object[0] **= object[0];
    object[0] **= object[0] **= 2;
    object[0] **= object[0] ** 2;