An input prompt with support of autocomplete path
npm install inquirer-input-autocomplete-pathInput prompt that support auto complete file path when user press Tab
``sh
npm install inquirer-input-autocomplete-path
yarn add inquirer-input-autocomplete-path
`
`js
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);
``