Reputation: 3873
I upgraded to node 8.5 and I'm using ES Modules... which require mjs... how do I add the mjs extension to the JavaScript syntax highlighter in Atom 1.20?
Upvotes: 0
Views: 250
Reputation: 3873
Source: https://atom.io/packages/file-types
config.cson
"*":
core:
customFileTypes:
"source.js": [
'mjs'
]
Upvotes: 1