editor.mjs 460 B

12345678910
  1. // This just packages npm modules for use in our Vue component, which
  2. // contains the actual logic that creates the editor and its configuration.
  3. export * from "codemirror";
  4. export * from "@codemirror/view";
  5. export * from "@codemirror/state";
  6. export * from "@codemirror/commands";
  7. export * from "@codemirror/language";
  8. export * from "@codemirror/language-data";
  9. export * from "@codemirror/theme-one-dark";
  10. export * as themes from "@uiw/codemirror-themes-all";