mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-05 02:01:32 +00:00
Disable debugger margin and minimap of editor
This commit is contained in:
parent
549343c2ef
commit
3a46f3e465
@ -46,7 +46,12 @@ export class IdeComponent implements OnInit {
|
||||
autosave = null;
|
||||
|
||||
language: string = config.ide.defaultLanguage;
|
||||
editorOptions = {theme: 'vs-dark', language: 'python'};
|
||||
editorOptions = {
|
||||
theme: 'vs-dark',
|
||||
language: 'python',
|
||||
glyphMargin: false,
|
||||
minimap: {enabled: false}
|
||||
};
|
||||
|
||||
@Output() newLogs = new EventEmitter<any>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user