Spaces:
Paused
Paused
File size: 404 Bytes
3c3f089 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { editor } from "monaco-editor";
export const monacoOptions: editor.IStandaloneEditorConstructionOptions = {
fontSize: 12,
fontWeight: "500",
minimap: {
enabled: false,
},
wordWrap: "on",
autoClosingBrackets: "always",
showUnused: true,
automaticLayout: true,
tabSize: 2,
renderLineHighlight: "none",
scrollbar: { verticalScrollbarSize: 10, verticalSliderSize: 10 },
};
|