samuelneff / MimeTypeMap

Provides a huge dictionary of file extensions to mime types.
MIT License
625 stars 201 forks source link

Added ECMAScript + modified .gitignore adding JetBrains Rider support #86

Closed pakosel closed 6 years ago

samuelneff commented 6 years ago

Thank you for your contribution.

Do you have any reference for the use of *.es file extension for ECMAScript files? I couldn't find anything online. The mime type is fine, but the associated file extension is not one I've seen or could find any reference to.

The .idea addition to .gitignore is fine too.

pakosel commented 6 years ago

There are two references - provided by mozilla dev page here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types

In general - .es files are text files containing TypeScript code

samuelneff commented 6 years ago

Thank you for the links.