hello i have a new bun project, which is using the prompts package from npm. there is weird issue where this code
https://www.npmjs.com/package/prompts
await prompts({type: ''})
does not autocomplete. when typing type, it does not appear at all. it does appear when i import the type and assign it to the object
import type { PromptObject } from "prompts"
await prompts({type: ''} as PromptObject)
the package.json and the tsconfig.json is the same as bun generated it, i was wondering if someone knew what was going on here? thanks!