mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 18:32:56 +01:00
24 lines
736 B
TypeScript
24 lines
736 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { registerLanguage } from '../_.contribution';
|
|
|
|
declare var AMD: any;
|
|
declare var require: any;
|
|
|
|
registerLanguage({
|
|
id: 'mysql',
|
|
extensions: [],
|
|
aliases: ['MySQL', 'mysql'],
|
|
loader: () => {
|
|
if (AMD) {
|
|
return new Promise((resolve, reject) => {
|
|
require(['vs/basic-languages/mysql/mysql'], resolve, reject);
|
|
});
|
|
} else {
|
|
return import('./mysql');
|
|
}
|
|
}
|
|
});
|