monaco-editor/test/index.js
Alex Dima 5f84834ffa Clarify example
Add launch configuration
2018-06-12 09:43:14 +02:00

7 lines
No EOL
201 B
JavaScript

import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
monaco.editor.create(document.getElementById('container'), {
value: 'console.log("Hello, world")',
language: 'javascript'
});