Input prompt that support auto complete file path when user press Tab
npm install inquirer-input-autocomplete-path
yarn add inquirer-input-autocomplete-path
import fileInput from 'inquirer-input-autocomplete-path';
const answer = await input({
message: "Enter your home directory",
default: "/home/test/",
directoryOnly: true,
});
console.log("Answer:", answer);