80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
define("vs/monaco.contribution-Cqdn_4Kw", ["require", "exports", "./editor.api-CykLys8L"], (function(require, exports, editor_api) {
|
|
"use strict";
|
|
class LanguageServiceDefaultsImpl {
|
|
constructor(languageId, diagnosticsOptions, modeConfiguration) {
|
|
this._onDidChange = new editor_api.Emitter();
|
|
this._languageId = languageId;
|
|
this.setDiagnosticsOptions(diagnosticsOptions);
|
|
this.setModeConfiguration(modeConfiguration);
|
|
}
|
|
get onDidChange() {
|
|
return this._onDidChange.event;
|
|
}
|
|
get languageId() {
|
|
return this._languageId;
|
|
}
|
|
get modeConfiguration() {
|
|
return this._modeConfiguration;
|
|
}
|
|
get diagnosticsOptions() {
|
|
return this._diagnosticsOptions;
|
|
}
|
|
setDiagnosticsOptions(options) {
|
|
this._diagnosticsOptions = options || /* @__PURE__ */ Object.create(null);
|
|
this._onDidChange.fire(this);
|
|
}
|
|
setModeConfiguration(modeConfiguration) {
|
|
this._modeConfiguration = modeConfiguration || /* @__PURE__ */ Object.create(null);
|
|
this._onDidChange.fire(this);
|
|
}
|
|
}
|
|
const diagnosticDefault = {
|
|
validate: true,
|
|
allowComments: true,
|
|
schemas: [],
|
|
enableSchemaRequest: false,
|
|
schemaRequest: "warning",
|
|
schemaValidation: "warning",
|
|
comments: "error",
|
|
trailingCommas: "error"
|
|
};
|
|
const modeConfigurationDefault = {
|
|
documentFormattingEdits: true,
|
|
documentRangeFormattingEdits: true,
|
|
completionItems: true,
|
|
hovers: true,
|
|
documentSymbols: true,
|
|
tokens: true,
|
|
colors: true,
|
|
foldingRanges: true,
|
|
diagnostics: true,
|
|
selectionRanges: true
|
|
};
|
|
const jsonDefaults = new LanguageServiceDefaultsImpl(
|
|
"json",
|
|
diagnosticDefault,
|
|
modeConfigurationDefault
|
|
);
|
|
const getWorker = () => getMode().then((mode2) => mode2.getWorker());
|
|
function getMode() {
|
|
return new Promise((resolve, reject) => require(["./jsonMode-CCwfh_OB"], resolve, reject));
|
|
}
|
|
editor_api.languages.register({
|
|
id: "json",
|
|
extensions: [".json", ".bowerrc", ".jshintrc", ".jscsrc", ".eslintrc", ".babelrc", ".har"],
|
|
aliases: ["JSON", "json"],
|
|
mimetypes: ["application/json"]
|
|
});
|
|
editor_api.languages.onLanguage("json", () => {
|
|
getMode().then((mode2) => mode2.setupMode(jsonDefaults));
|
|
});
|
|
const monaco_contribution = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
__proto__: null,
|
|
getWorker,
|
|
jsonDefaults
|
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
exports.getWorker = getWorker;
|
|
exports.jsonDefaults = jsonDefaults;
|
|
exports.monaco_contribution = monaco_contribution;
|
|
}));
|