error TS5101: Option 'outFile' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
error TS5107: Option 'module=AMD' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


!!! error TS5101: Option 'outFile' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
!!! error TS5107: Option 'module=AMD' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
==== folder/mod1.js (0 errors) ====
    /**
     * @typedef {{x: number}} Item
     */
    /**
     * @type {Item};
     */
    const x = {x: 12};
    module.exports = x;
==== index.js (0 errors) ====
    /** @type {(typeof import("./folder/mod1"))[]} */
    const items = [{x: 12}];
    module.exports = items;