javascript.contribution.js 710 B

1234567891011121314
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. import { registerLanguage } from '../_.contribution.js';
  6. registerLanguage({
  7. id: 'javascript',
  8. extensions: ['.js', '.es6', '.jsx', '.mjs'],
  9. firstLine: '^#!.*\\bnode',
  10. filenames: ['jakefile'],
  11. aliases: ['JavaScript', 'javascript', 'js'],
  12. mimetypes: ['text/javascript'],
  13. loader: function () { return import('./javascript.js'); }
  14. });