UNPKG

monaco-editor

Version:
26 lines (23 loc) 920 B
/*!----------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Version: 0.46.0(21007360cad28648bdf46282a2592cb47c3a7a6f) * 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"); } } });