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.
==== index.js (0 errors) ====
    const TopLevelSym = Symbol();
    const InnerSym = Symbol();
    module.exports = {
        [TopLevelSym](x = 12) {
            return x;
        },
        items: {
            [InnerSym]: (arg = {x: 12}) => arg.x
        }
    }
    
==== index2.js (0 errors) ====
    const TopLevelSym = Symbol();
    const InnerSym = Symbol();
    
    export class MyClass {
        static [TopLevelSym] = 12;
        [InnerSym] = "ok";
        /**
         * @param {typeof TopLevelSym | typeof InnerSym} _p
         */
        constructor(_p = InnerSym) {
            // switch on _p
        }
    }
    