var editor = monaco.editor.create(document.getElementById("editorContainer"), {
value: jsCode,
language: "typescript", //can use your custom language here
suggest: {
showWords: false
}
});
can this be done only during the creation of the editor? can I change the configuration to false afterwards?