25 lines
919 B
JavaScript
25 lines
919 B
JavaScript
/*!-----------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Version: 0.43.0(94c055bcbdd49f04a0fa15515e848542a79fb948)
|
|
* Released under the MIT license
|
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
|
*-----------------------------------------------------------------------------*/
|
|
|
|
// src/basic-languages/handlebars/handlebars.contribution.ts
|
|
import { registerLanguage } from "../_.contribution.js";
|
|
registerLanguage({
|
|
id: "handlebars",
|
|
extensions: [".handlebars", ".hbs"],
|
|
aliases: ["Handlebars", "handlebars", "hbs"],
|
|
mimetypes: ["text/x-handlebars-template"],
|
|
loader: () => {
|
|
if (false) {
|
|
return new Promise((resolve, reject) => {
|
|
__require(["vs/basic-languages/handlebars/handlebars"], resolve, reject);
|
|
});
|
|
} else {
|
|
return import("./handlebars.js");
|
|
}
|
|
}
|
|
});
|