error TS5101: Option 'out' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
  Use 'outFile' instead.


!!! error TS5101: Option 'out' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
!!! error TS5101:   Use 'outFile' instead.
==== tests/cases/conformance/jsdoc/jsdocAccessibilityTagDeclarations.js (0 errors) ====
    class Protected {
        /** @protected */
        constructor(c) {
            /** @protected */
            this.c = c
        }
        /** @protected */
        m() {
            return this.c
        }
        /** @protected */
        get p() { return this.c }
        /** @protected */
        set p(value) { this.c = value }
    }
    
    class Private {
        /** @private */
        constructor(c) {
            /** @private */
            this.c = c
        }
        /** @private */
        m() {
            return this.c
        }
        /** @private */
        get p() { return this.c }
        /** @private */
        set p(value) { this.c = value }
    }
    
    // https://github.com/microsoft/TypeScript/issues/38401
    class C {
        constructor(/** @public */ x, /** @protected */ y, /** @private */ z) {
        }
    }