Library to determine file types based upon the file name.
npm install @cspell/filetypes@cspell/filetypesA library to help determine the type of a file.
``sh`
npm install -S @cspell/filetypes
`ts
import { findMatchingFileTypes } from '@cspell/filetypes';
console.log(findMatchingFileTypes('code.js')); // outputs: [ 'javascript' ]
``