editor.ts 272 B

123456789101112
  1. // Instantiate the editor
  2. const editor = ace.edit("editor");
  3. // and set some default options
  4. editor.setOptions({
  5. enableBasicAutocompletion: true,
  6. enableSnippets: true,
  7. enableLiveAutocompletion: true,
  8. theme: "ace/theme/monokai"
  9. });
  10. export default editor;