mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Allow configuring monaco minimap from tfw config.ts
This commit is contained in:
parent
8d9a9b1aea
commit
8de4c30f80
@ -30,7 +30,8 @@ export const config = {
|
|||||||
showDeployButton: true,
|
showDeployButton: true,
|
||||||
reloadIframeOnDeploy: true,
|
reloadIframeOnDeploy: true,
|
||||||
showConsoleOnDeploy: true,
|
showConsoleOnDeploy: true,
|
||||||
autoDetectFileLanguage: true
|
autoDetectFileLanguage: true,
|
||||||
|
showMiniMap: false
|
||||||
},
|
},
|
||||||
terminal: {
|
terminal: {
|
||||||
route: 'shell'
|
route: 'shell'
|
||||||
|
@ -50,7 +50,7 @@ export class IdeComponent implements OnInit {
|
|||||||
theme: 'vs-dark',
|
theme: 'vs-dark',
|
||||||
language: config.ide.defaultLanguage,
|
language: config.ide.defaultLanguage,
|
||||||
glyphMargin: false,
|
glyphMargin: false,
|
||||||
minimap: {enabled: false}
|
minimap: {enabled: config.ide.showMiniMap}
|
||||||
};
|
};
|
||||||
|
|
||||||
@Output() newLogs = new EventEmitter<any>();
|
@Output() newLogs = new EventEmitter<any>();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user