You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{transform}from'rolldown/experimental'constresult=transform('foo.ts','import { ref, type Ref } from "vue";',{typescript: {onlyRemoveTypeImports: true,},})console.log(result.code)// import { ref, type Ref } from "vue";
The output should be import { ref } from "vue"; (related babel/babel#15348)
reproduction
The output should be import { ref } from "vue"; (related babel/babel#15348)
refer: rolldown/rolldown#3244
The text was updated successfully, but these errors were encountered: