convert project to typescript
This commit is contained in:
60
src/fileTypeExclusions.ts
Normal file
60
src/fileTypeExclusions.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
export default [
|
||||
// Images
|
||||
'.jpg',
|
||||
'.jpeg',
|
||||
'.png',
|
||||
'.gif',
|
||||
'.bmp',
|
||||
'.svg',
|
||||
'.webp',
|
||||
'.tiff',
|
||||
'.ico',
|
||||
|
||||
// Fonts
|
||||
'.ttf',
|
||||
'.woff',
|
||||
'.woff2',
|
||||
'.eot',
|
||||
'.otf',
|
||||
|
||||
// Lock files
|
||||
'.lock',
|
||||
'.lockb',
|
||||
|
||||
// Config files
|
||||
'.yaml',
|
||||
'.yml',
|
||||
'.toml',
|
||||
'.conf',
|
||||
|
||||
// Binary and compiled
|
||||
'.exe',
|
||||
'.dll',
|
||||
'.so',
|
||||
'.dylib',
|
||||
'.bin',
|
||||
'.dat',
|
||||
'.pyc',
|
||||
'.pyo',
|
||||
'.class',
|
||||
'.jar',
|
||||
|
||||
// Archives
|
||||
'.zip',
|
||||
'.tar',
|
||||
'.gz',
|
||||
'.rar',
|
||||
'.7z',
|
||||
|
||||
// Media
|
||||
'.mp3',
|
||||
'.mp4',
|
||||
'.avi',
|
||||
'.mov',
|
||||
'.wav',
|
||||
|
||||
// Database
|
||||
'.db',
|
||||
'.sqlite',
|
||||
'.sqlite3'
|
||||
]
|
Reference in New Issue
Block a user