Browse Source

Create julia.contribution.ts

alan.invents 5 years ago
parent
commit
75b2a69851
1 changed files with 14 additions and 0 deletions
  1. 14 0
      src/julia/julia.contribution.ts

+ 14 - 0
src/julia/julia.contribution.ts

@@ -0,0 +1,14 @@
+/*---------------------------------------------------------------------------------------------
+ *  Copyright (c) Microsoft Corporation. All rights reserved.
+ *  Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+'use strict';
+
+import {registerLanguage} from '../_.contribution';
+
+registerLanguage({
+	id: 'julia',
+	extensions: ['.jl'],
+	aliases: ['julia', 'Julia'],
+	loader: () => import('./julia')
+});