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


!!! error TS5101: Option 'preserveValueImports' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
!!! error TS5101:   Use 'verbatimModuleSyntax' instead.
==== /exports.ts (0 errors) ====
    export function Component() {}
    export interface ComponentProps {}
    
==== /index.ts (0 errors) ====
    import { Component, ComponentProps } from "./exports.js";
    
==== /index.fixed.ts (0 errors) ====
    import { Component, type ComponentProps } from "./exports.js";
    